summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Merge 3.6Victor Stinner2017-02-101-2/+3
|\
| * Fix test_datetime on Windows3.6Victor Stinner2017-02-101-2/+3
* | Merge 3.6Victor Stinner2017-02-101-3/+7
|\ \ | |/
| * Fix test_datetime on system with 32-bit time_tVictor Stinner2017-02-101-3/+7
* | Merge 3.6Victor Stinner2017-02-101-0/+36
|\ \ | |/
| * Fix datetime.fromtimestamp(): check boundsVictor Stinner2017-02-101-0/+36
* | Merge 3.6 (fix #29519)?ukasz Langa2017-02-10116-1208/+864
|\ \ | |/ |/|
| * Issue #29507: Update test_exceptionsVictor Stinner2017-02-091-9/+2
| * support: temp_dir() and change_cwd() uses repr() in error messageVictor Stinner2017-02-082-5/+5
| * Fix regrtest -j0 -R outputVictor Stinner2017-02-081-1/+1
| * Update test_support for my temp_dir/change_cwd changesVictor Stinner2017-02-082-6/+19
| * support: add more info on temp_dir() and change_cwd() failureVictor Stinner2017-02-081-4/+6
| * Issue #29314: Merge with 3.6Mariatta Wijaya2017-02-061-1/+2
| |\
| * \ Issue #28164: Improves test on Windows 7Steve Dower2017-02-061-16/+22
| |\ \
| * | | regrtest: don't fail immediately if a child does crashVictor Stinner2017-02-063-6/+16
| * | | Issue #29405: Make total calculation in _guess_delimiter more accurate.Xiang Zhang2017-02-061-2/+2
| * | | Merge from 3.6Steve Dower2017-02-04113-1181/+819
| |\ \ \
| | * \ \ Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev)Steve Dower2017-02-041-13/+27
| | |\ \ \
| | * \ \ \ Merge issue #28164 and issue #29409Steve Dower2017-02-042-2/+46
| | |\ \ \ \
| | * \ \ \ \ Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-042-1/+12
| | |\ \ \ \ \
| | * \ \ \ \ \ Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-04113-1181/+819
| | |\ \ \ \ \ \
| | | * | | | | | Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-031-1/+1
| | | * | | | | | Closes #29213: Merged fix from 3.6.Vinay Sajip2017-02-022-7/+5
| | | * | | | | | Closes #24875: Merged fix from 3.6.Vinay Sajip2017-02-02113-1181/+819
| | | |\ \ \ \ \ \
| | | | * | | | | | 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 #29368: The extend() method is now called instead of the append()Serhiy Storchaka2017-02-021-5/+12
| | | | * | | | | | Issue #29377: Add three new wrappers to types.py (Manuel Krebber).Guido van Rossum2017-02-012-0/+22
| | | | * | | | | | 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
| | | | * | | | | | Issue #29218: Remove unused install_misc commandBerker Peksag2017-02-011-31/+0
| | | | * | | | | | Issue #29283: Merge from 3.6Berker Peksag2017-01-301-2/+0
| | | | |\ \ \ \ \ \
| | | | * \ \ \ \ \ \ Closes #29308: Merged fix from 3.6.Vinay Sajip2017-01-27108-1141/+763
| | | | |\ \ \ \ \ \ \
| | | | | * | | | | | | Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDictSerhiy Storchaka2017-01-251-10/+9
| | | | | * | | | | | | issue29167: fix race condition in (Int)FlagEthan Furman2017-01-242-6/+99
| | | | | |\ \ \ \ \ \ \
| | | | | * \ \ \ \ \ \ \ Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-24107-1131/+754
| | | | | |\ \ \ \ \ \ \ \
| | | | | | * | | | | | | | Issue #29338: Fix test_enum.Serhiy Storchaka2017-01-241-0/+4
| | | | | | * | | | | | | | Issues #29273: Merge test___all__ from 3.6Martin Panter2017-01-231-11/+0
| | | | | | |\ \ \ \ \ \ \ \
| | | | | | * | | | | | | | | Issue #29338: Don't output an empty signature for class constructor.Serhiy Storchaka2017-01-231-2/+2
| | | | | | * | | | | | | | | Issue #29338: The help of a builtin or extension class now includes theSerhiy Storchaka2017-01-231-3/+29
| | | | | | * | | | | | | | | Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-221-1/+6
| | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | * \ \ \ \ \ \ \ \ \ typo fix, extra '.' on MacOS :)Gregory P. Smith2017-01-221-1/+1
| | | | | | |\ \ \ \ \ \ \ \ \ \
| | | | | | * \ \ \ \ \ \ \ \ \ \ Issue #28556: Allow defining methods in NamedTuple class syntax (#362) (3.6->...Guido van Rossum2017-01-22105-1128/+721
| | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ \ \ \ Issue #28556: various style fixes for typing.py (3.6->3.7)Guido van Rossum2017-01-222-36/+68
| | | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-22105-1128/+721
| | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Issue #29290: Merge 3.6.Xiang Zhang2017-01-222-1/+18
| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.Serhiy Storchaka2017-01-212-5/+20
| | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | * | | | | | | | | | | | | | 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