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