index
:
cpython
3.10
3.11
3.12
3.13
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_deque.py
Commit message (
Expand
)
Author
Age
*
gh-115243: Fix crash in deque.index() when the deque is concurrently modified...
kcatss
2024-02-14
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
*
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Serhiy Storchaka
2021-09-20
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
*
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
Dong-hee Na
2021-06-23
*
bpo-40521: Convert deque freelist from global vars to instance vars (GH-25906)
Raymond Hettinger
2021-05-04
*
bpo-41055: Remove outdated tests for the tp_print slot. (GH-21006)
Serhiy Storchaka
2020-06-21
*
bpo-39590: make deque.__contains__ and deque.count hold strong references (GH...
sweeneyde
2020-02-09
*
Minor performance tweak for deque.index() with a start argument (GH-9440)
Raymond Hettinger
2018-09-21
*
closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...
Oren Milman
2018-09-11
*
bpo-29919: Remove unused imports found by pyflakes (#137)
Victor Stinner
2017-03-27
*
Issue #27626: Merge spelling fixes from 3.5
Martin Panter
2016-07-28
|
\
|
*
Issue #27626: Spelling fixes in docs, comments and internal names
Martin Panter
2016-07-28
*
|
Fixed test_sizeof for deque.
Serhiy Storchaka
2016-05-18
|
\
|
|
*
Fixed test_sizeof for deque.
Serhiy Storchaka
2016-05-18
*
|
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
|
\
|
|
*
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
*
|
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka
2016-03-06
|
\
|
|
*
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka
2016-03-06
|
*
Issue #26194: Inserting into a full deque to raise an IndexError
Raymond Hettinger
2016-02-01
*
|
Issue #26482: Allowed pickling recursive dequeues.
Serhiy Storchaka
2016-03-06
*
|
merge
Raymond Hettinger
2016-02-01
*
|
merge
Raymond Hettinger
2016-01-26
|
\
|
|
*
Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen
Raymond Hettinger
2016-01-26
|
*
Issue #24913: Fix overrun error in deque.index().
Brett Cannon
2015-09-03
*
|
Fix typo
Raymond Hettinger
2016-01-25
*
|
Add a fast path (no iterator creation) for a common case for repeating deques...
Raymond Hettinger
2015-09-19
*
|
Issue #24913: Fix overrun error in deque.index().
Raymond Hettinger
2015-08-26
|
/
*
Check deques against common sequence tests (except for slicing).
Raymond Hettinger
2015-04-01
*
Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().
Raymond Hettinger
2015-03-31
*
Issue 23704: Add index(), copy(), and insert() to deques. Register deques a...
Raymond Hettinger
2015-03-21
*
Issue 23705: Improve the performance of __contains__ checks for deques.
Raymond Hettinger
2015-03-20
*
Bump the blocksize up from 62 to 64 to speed up the modulo calculation.
Raymond Hettinger
2015-02-26
*
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka
2014-12-15
|
\
|
*
Issue #22777: Test pickling with all protocols.
Serhiy Storchaka
2014-12-15
*
|
Issue 19898: Add test for dequereviter_new.
Raymond Hettinger
2014-06-14
|
/
*
Restore the data block size to 62.
Raymond Hettinger
2013-07-28
*
Add a spacing saving heuristic to deque's extend methods
Raymond Hettinger
2013-07-09
*
Speed-up deque indexing by changing the deque block length to a power of two.
Raymond Hettinger
2013-07-05
*
MERGE: Closes #15469: Correct __sizeof__ support for deque
Jesus Cea
2012-08-03
|
\
|
*
Closes #15469: Correct __sizeof__ support for deque
Jesus Cea
2012-08-03
*
|
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson
2012-04-03
|
/
*
Issue #11004: Repair edge case in deque.count().
Raymond Hettinger
2011-01-25
*
#9424: Replace deprecated assert* methods in the Python test suite.
Ezio Melotti
2010-11-20
*
Add count() method to collections.deque().
Raymond Hettinger
2010-04-03
*
Merged revisions 78093 via svnmerge from
Georg Brandl
2010-03-14
*
use assert[Not]In where appropriate
Benjamin Peterson
2010-01-19
*
Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)
Raymond Hettinger
2009-12-10
*
Add a reverse() method to collections.deque().
Raymond Hettinger
2009-12-10
*
convert old fail* assertions to assert*
Benjamin Peterson
2009-06-30
[next]