History log of /external/python/cpython2/Lib/test/test_buffer.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
607965eb7e11b9405e23175d1f8aee3647425a80 11-Jan-2016 Barry Warsaw <barry@python.org> Comment out two tests that won't pass now after reverting the typeobject.c
change. Also, as per further discussion, we'll just remove the regressing
code in typeobject.c
/external/python/cpython2/Lib/test/test_buffer.py
b8e54dd806e75f3591d8b7f07676a5738dad019d 30-Dec-2015 Serhiy Storchaka <storchaka@gmail.com> Issue #22995: Instances of extension types with a state that aren't
subclasses of list or dict and haven't implemented any pickle-related
methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__,
or __getstate__), can no longer be pickled. Including memoryview.
/external/python/cpython2/Lib/test/test_buffer.py
550b945fd66f1c6837a53fbf29dc8e524297b8c3 24-Jun-2014 Benjamin Peterson <benjamin@python.org> avoid overflow with large buffer sizes and/or offsets (closes #21831)
/external/python/cpython2/Lib/test/test_buffer.py
1d108bc7148336f01d6df066ba1b27678c9bd1ca 20-Mar-2013 Kristján Valur Jónsson <sweskman@gmail.com> Issue #10211 : Buffer object should support the new buffer interface.
/external/python/cpython2/Lib/test/test_buffer.py
07627880813ffaad8d9b90bfe8791ccf588b031b 21-Mar-2010 Florent Xicluna <florent.xicluna@gmail.com> #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper.
/external/python/cpython2/Lib/test/test_buffer.py
ce8e33a095030e7af94f58f9da196b240bdf0476 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Reverting the Revision: 77368. I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
/external/python/cpython2/Lib/test/test_buffer.py
3ddc435af6873c6304058d7bcbcb19ee4fba7781 08-Jan-2010 Senthil Kumaran <orsenthil@gmail.com> Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
/external/python/cpython2/Lib/test/test_buffer.py
3ccec68a05abae43cf74dc7821c61ba88ab6cb46 28-Aug-2007 Thomas Wouters <thomas@python.org> Improve extended slicing support in builtin types and classes. Specifically:

- Specialcase extended slices that amount to a shallow copy the same way as
is done for simple slices, in the tuple, string and unicode case.

- Specialcase step-1 extended slices to optimize the common case for all
involved types.

- For lists, allow extended slice assignment of differing lengths as long
as the step is 1. (Previously, 'l[:2:1] = []' failed even though
'l[:2] = []' and 'l[:2:None] = []' do not.)

- Implement extended slicing for buffer, array, structseq, mmap and
UserString.UserString.

- Implement slice-object support (but not non-step-1 slice assignment) for
UserString.MutableString.

- Add tests for all new functionality.
/external/python/cpython2/Lib/test/test_buffer.py