aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_deque.py
Commit message (Expand)AuthorAge
* gh-115243: Fix crash in deque.index() when the deque is concurrently modified...kcatss2024-02-14
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-06
* bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)Serhiy Storchaka2021-09-20
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-29
* bpo-28395: Remove unnecessary semicolons in tests (GH-26868)Dong-hee Na2021-06-23
* bpo-40521: Convert deque freelist from global vars to instance vars (GH-25906)Raymond Hettinger2021-05-04
* bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)Serhiy Storchaka2020-06-21
* bpo-39590: make deque.__contains__ and deque.count hold strong references (GH...sweeneyde2020-02-09
* Minor performance tweak for deque.index() with a start argument (GH-9440)Raymond Hettinger2018-09-21
* closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...Oren Milman2018-09-11
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-27
* Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-28
|\
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-28
* | Fixed test_sizeof for deque.Serhiy Storchaka2016-05-18
|\|
| * Fixed test_sizeof for deque.Serhiy Storchaka2016-05-18
* | Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-30
|\|
| * Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-30
* | Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-06
|\|
| * Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-06
| * Issue #26194: Inserting into a full deque to raise an IndexErrorRaymond Hettinger2016-02-01
* | Issue #26482: Allowed pickling recursive dequeues.Serhiy Storchaka2016-03-06
* | mergeRaymond Hettinger2016-02-01
* | mergeRaymond Hettinger2016-01-26
|\|
| * Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlenRaymond Hettinger2016-01-26
| * Issue #24913: Fix overrun error in deque.index().Brett Cannon2015-09-03
* | Fix typoRaymond Hettinger2016-01-25
* | Add a fast path (no iterator creation) for a common case for repeating deques...Raymond Hettinger2015-09-19
* | Issue #24913: Fix overrun error in deque.index().Raymond Hettinger2015-08-26
|/
* Check deques against common sequence tests (except for slicing).Raymond Hettinger2015-04-01
* Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().Raymond Hettinger2015-03-31
* Issue 23704: Add index(), copy(), and insert() to deques. Register deques a...Raymond Hettinger2015-03-21
* Issue 23705: Improve the performance of __contains__ checks for deques.Raymond Hettinger2015-03-20
* Bump the blocksize up from 62 to 64 to speed up the modulo calculation.Raymond Hettinger2015-02-26
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-15
|\
| * Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-15
* | Issue 19898: Add test for dequereviter_new.Raymond Hettinger2014-06-14
|/
* Restore the data block size to 62.Raymond Hettinger2013-07-28
* Add a spacing saving heuristic to deque's extend methodsRaymond Hettinger2013-07-09
* Speed-up deque indexing by changing the deque block length to a power of two.Raymond Hettinger2013-07-05
* MERGE: Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-03
|\
| * Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-03
* | Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-03
|/
* Issue #11004: Repair edge case in deque.count().Raymond Hettinger2011-01-25
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-20
* Add count() method to collections.deque().Raymond Hettinger2010-04-03
* Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-14
* use assert[Not]In where appropriateBenjamin Peterson2010-01-19
* Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)Raymond Hettinger2009-12-10
* Add a reverse() method to collections.deque().Raymond Hettinger2009-12-10
* convert old fail* assertions to assert*Benjamin Peterson2009-06-30