- 31 Mar, 2016 5 commits
-
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
Also change BufferedReader.writable() and BufferedWriter.readable() to always return False.
-
- 30 Mar, 2016 13 commits
-
-
Serhiy Storchaka authored
of iterators of other mutable sequences: it lefts exhausted even if iterated array is extended.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator.
-
Serhiy Storchaka authored
Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator.
-
Berker Peksag authored
Reported by Matthew Cole on docs@p.o.
-
Berker Peksag authored
Reported by Matthew Cole on docs@p.o.
-
Victor Stinner authored
Pass all regrtest options, not only --testdir.
-
Victor Stinner authored
Pass also --testdir option.
-
Victor Stinner authored
test_forever() stores its state into the builtins module since the test module is reloaded at each run. Remove also warning to detect leaked tests of a previous run.
-
Victor Stinner authored
add "test." prefix to test module names. regrtest also prepends testdir to sys.path.
-
Victor Stinner authored
-
Victor Stinner authored
Use the default timeout of 30 seconds to avoid blocking forever.
-
- 29 Mar, 2016 11 commits
-
-
Victor Stinner authored
Issue #26641: doctest.DocFileTest and doctest.testfile() now support packages (module splitted into multiple directories) for the package parameter.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
* Fix test_os.BytesWalkTests on Windows * Mimick better the reference os.DirEntry on Windows * _DummyDirEntry now caches os.stat() result * _DummyDirEntry constructor now tries to get os.stat() * Fix os._DummyDirEntry.is_symlink(), don't follow symbolic links: use os.stat(path, follow_symlinks=False).
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Issue #25911: Fix os._DummyDirEntry.is_symlink(), don't follow symbolic links: use os.stat(path, follow_symlinks=False).
-
Victor Stinner authored
Thanks Arfrever for the report :)
-
Andrew Svetlov authored
-
Andrew Svetlov authored
-
- 28 Mar, 2016 3 commits
-
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
-
- 27 Mar, 2016 8 commits
-
-
Berker Peksag authored
Patch by Oren Milman.
-
Berker Peksag authored
_Call is a subclass of tuple (changeset 3603bae63c13 only works for classes) so we need to implement __ne__ ourselves. Patch by Andrew Plummer.
-
Berker Peksag authored
_Call is a subclass of tuple (changeset 3603bae63c13 only works for classes) so we need to implement __ne__ ourselves. Patch by Andrew Plummer.
-
Berker Peksag authored
If you pass -1, the callable can take any number of arguments. Added tests to verify the behavior. Initial patch by Cédric Krier.
-
Berker Peksag authored
If you pass -1, the callable can take any number of arguments. Added tests to verify the behavior. Initial patch by Cédric Krier.
-
Berker Peksag authored
The behaviour of the close method is tested by ClosedCurTests in Lib/sqlite3/test/dbapi.py. This is basically a backport of https://github.com/ghaering/pysqlite/issues/73.
-
Berker Peksag authored
The behaviour of the close method is tested by ClosedCurTests in Lib/sqlite3/test/dbapi.py. This is basically a backport of https://github.com/ghaering/pysqlite/issues/73.
-
Victor Stinner authored
-