COMMITS
/ Lib/test/test_deque.py May 22, 2025
S
gh-71339: Use new assertion methods in tests (GH-129046)
Serhiy Storchaka committed
February 14, 2024
April 6, 2022
S
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka committed
September 20, 2021
S
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Serhiy Storchaka committed
August 29, 2021
S
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka committed
June 23, 2021
D
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
Dong-hee Na committed
May 5, 2021
R
bpo-40521: Convert deque freelist from global vars to instance vars (GH-25906)
Raymond Hettinger committed
June 21, 2020
S
bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)
Serhiy Storchaka committed
February 9, 2020
S
September 21, 2018
R
Minor performance tweak for deque.index() with a start argument (GH-9440)
Raymond Hettinger committed
September 11, 2018
March 27, 2017
V
bpo-29919: Remove unused imports found by pyflakes (#137)
Victor Stinner committed
July 28, 2016
M
Issue #27626: Merge spelling fixes from 3.5
Martin Panter committed
M
Issue #27626: Spelling fixes in docs, comments and internal names
Martin Panter committed
May 18, 2016
S
Fixed test_sizeof for deque.
Serhiy Storchaka committed
S
Fixed test_sizeof for deque.
Serhiy Storchaka committed
March 30, 2016
S
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka committed
S
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka committed
March 6, 2016
S
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka committed
S
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka committed
S
Issue #26482: Allowed pickling recursive dequeues.
Serhiy Storchaka committed
February 2, 2016
R
Issue #26194: Inserting into a full deque to raise an IndexError
Raymond Hettinger committed
January 27, 2016
R
Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen
Raymond Hettinger committed
September 19, 2015
R
Add a fast path (no iterator creation) for a common case for repeating deques of size 1
Raymond Hettinger committed
September 3, 2015
B
Issue #24913: Fix overrun error in deque.index().
Brett Cannon committed
August 26, 2015
R
Issue #24913: Fix overrun error in deque.index().
Raymond Hettinger committed
April 1, 2015
R
Check deques against common sequence tests (except for slicing).
Raymond Hettinger committed
March 31, 2015
R
Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().
Raymond Hettinger committed
March 21, 2015
R
Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence.
Raymond Hettinger committed
March 20, 2015
R
Issue 23705: Improve the performance of __contains__ checks for deques.
Raymond Hettinger committed
February 27, 2015
R
Bump the blocksize up from 62 to 64 to speed up the modulo calculation.
Raymond Hettinger committed
December 15, 2014
S
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka committed
S
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka committed
June 15, 2014
R
Issue 19898: Add test for dequereviter_new.
Raymond Hettinger committed
July 28, 2013
R
Restore the data block size to 62.
Raymond Hettinger committed
July 9, 2013
R
Add a spacing saving heuristic to deque's extend methods
Raymond Hettinger committed
July 6, 2013
R
Speed-up deque indexing by changing the deque block length to a power of two.
Raymond Hettinger committed
August 3, 2012
J
MERGE: Closes #15469: Correct __sizeof__ support for deque
Jesus Cea committed
J
Closes #15469: Correct __sizeof__ support for deque
Jesus Cea committed
April 3, 2012
K
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson committed
January 25, 2011
R
Issue #11004: Repair edge case in deque.count().
Raymond Hettinger committed
November 20, 2010
E
#9424: Replace deprecated assert* methods in the Python test suite.
Ezio Melotti committed
April 3, 2010
R
Add count() method to collections.deque().
Raymond Hettinger committed
March 14, 2010
G
Merged revisions 78093 via svnmerge from
Georg Brandl committed
January 19, 2010
B
use assert[Not]In where appropriate
Benjamin Peterson committed
December 10, 2009
R
Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)
Raymond Hettinger committed
R
Add a reverse() method to collections.deque().
Raymond Hettinger committed