summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Merge issue #28164 and issue #29409Steve Dower2017-02-042-2/+46
|\
| * Issue #28164: Correctly handle special console filenames (patch by Eryk Sun)Steve Dower2017-02-041-1/+27
| * Issue #29409: Implement PEP 529 for io.FileIO (Patch by Eryk Sun)Steve Dower2017-02-041-1/+19
* | Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+11
|\ \ | |/
| * Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+11
| |\
| | * Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+11
* | | Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
|\ \ \ | |/ /
| * | Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
| |\ \ | | |/
| | * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
* | | Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-021-1/+1
* | | Closes #24875: Merged fix from 3.6.Vinay Sajip2017-02-021-8/+14
|\ \ \ | |/ /
| * | Fixes #24875: Merged fix from 3.5.Vinay Sajip2017-02-021-8/+14
| |\ \ | | |/
| | * Fixes #24875: pip can now be installed in a venv with --system-site-packages.Vinay Sajip2017-02-021-9/+16
| * | Merge 3.5Victor Stinner2017-02-021-0/+4
| |\ \ | | |/
| | * Issue #29300: test_struct tests unpack_from() with keywordsVictor Stinner2017-02-021-0/+4
* | | Rename struct.unpack() 2nd parameter to "buffer"Victor Stinner2017-02-021-3/+3
* | | Issue #29300: Convert _struct module to Argument ClinicVictor Stinner2017-02-021-0/+4
* | | Issue #29377: Add three new wrappers to types.py (Manuel Krebber).Guido van Rossum2017-02-011-0/+18
* | | Fix test_gdb.test_wrapper_call() on Python 2Victor Stinner2017-02-011-2/+2
* | | Make test_gdb.test_wrapper_call() make reliableVictor Stinner2017-02-011-3/+2
* | | python-gdb.py supports method-wrapperVictor Stinner2017-02-011-1/+20
* | | issue29167: fix race condition in (Int)FlagEthan Furman2017-01-241-2/+88
|\ \ \ | |/ /
| * | closes issue29167: fix race condition in (Int)FlagEthan Furman2017-01-241-2/+88
* | | Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-0/+3
|\ \ \ | |/ /
| * | Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-0/+3
| |\ \ | | |/
| | * Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-241-0/+3
* | | Issue #29338: Fix test_enum.Serhiy Storchaka2017-01-241-0/+4
* | | Issues #29273: Merge test___all__ from 3.6Martin Panter2017-01-231-11/+0
|\ \ \ | |/ /
| * | Issues #29273: Merge test___all__ from 3.5Martin Panter2017-01-231-11/+0
| |\ \ | | |/
| | * Issue #29273: Remove unneeded workaround to restore localeMartin Panter2017-01-231-11/+0
* | | Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-231-1/+6
|\ \ \ | |/ /
| * | Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-231-1/+6
| |\ \ | | |/
| | * Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-231-1/+6
* | | typo fix, extra '.' on MacOS :)Gregory P. Smith2017-01-231-1/+1
|\ \ \ | |/ /
| * | typo fix, extra '.' on MacOS :)Gregory P. Smith2017-01-231-1/+1
| |\ \ | | |/
| | * typo fix, extra '.' :)Gregory P. Smith2017-01-231-1/+1
* | | Issue #28556: Allow defining methods in NamedTuple class syntax (#362) (3.6->...Guido van Rossum2017-01-231-5/+27
|\ \ \ | |/ /
| * | Issue #28556: Allow defining methods in NamedTuple class syntax (#362) (3.5->...Guido van Rossum2017-01-231-5/+27
| |\ \ | | |/
| | * Issue #28556: Allow defining methods in NamedTuple class syntax (#362)Guido van Rossum2017-01-231-5/+27
* | | Issue #28556: various style fixes for typing.py (3.6->3.7)Guido van Rossum2017-01-231-10/+21
|\ \ \ | |/ /
| * | Issue #28556: various style fixes for typing.py (3.5->3.6)Guido van Rossum2017-01-231-10/+21
| |\ \ | | |/
| | * Issue #28556: various style fixes for typing.pyGuido van Rossum2017-01-231-10/+21
* | | Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-0/+41
|\ \ \ | |/ /
| * | Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-0/+41
| |\ \ | | |/
| | * Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-0/+41
* | | Issue #29290: Merge 3.6.Xiang Zhang2017-01-221-0/+17
|\ \ \ | |/ /
| * | Issue #29290: Merge 3.5.Xiang Zhang2017-01-221-0/+17
| |\ \ | | |/
| | * Issue #29290: argparse help messages won't wrap at non-breaking spaces.Xiang Zhang2017-01-221-0/+17
* | | Issue #29282: Backed out changeset b33012ef1417Mark Dickinson2017-01-211-234/+0
* | | Issue #29282: add fused multiply-add function, math.fma.Mark Dickinson2017-01-211-0/+234