summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodu...Miss Islington (bot)2018-10-212-0/+6
* [3.6] Remove duplicate NEWS entry due to cherry-picking (GH-10013)Ned Deily2018-10-201-3/+0
* Post release bumpNed Deily2018-10-202-3/+3
* Merge tag 'v3.6.7' into 3.6Ned Deily2018-10-206-16/+27
|\
| * 3.6.7finalv3.6.7Ned Deily2018-10-206-11/+27
| * bpo-34576: Revert doc change until it can be properly fixed (GH-9720)Ned Deily2018-10-201-8/+0
| * bpo-34521: Add NEWS entry for changes in GH-9613 (GH-9850)Miss Islington (bot)2018-10-201-0/+3
* | bpo-35032: Remove inaccessible videos from faq/Windows (GH-10004)Miss Islington (bot)2018-10-201-24/+0
* | bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349). ...Serhiy Storchaka2018-10-202-53/+21
* | bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH...Miss Islington (bot)2018-10-203-28/+28
* | bpo-32256: Make patchcheck.py work for out-of-tree builds (GH-4760)Miss Islington (bot)2018-10-201-3/+9
* | bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate()...Miss Islington (bot)2018-10-203-3/+27
* | bpo-32798: Add restriction on the offset parameter for mmap.flush in the docs...Miss Islington (bot)2018-10-201-4/+5
* | bpo-21196: Clarify name mangling rules in tutorial (GH-5667)Miss Islington (bot)2018-10-201-0/+5
* | bpo-33594: Add deprecation info in inspect.py module (GH-7036)Miss Islington (bot)2018-10-192-7/+18
* | bpo-33726, doc: Add short descriptions to PEP references in seealso (GH-7294)Miss Islington (bot)2018-10-192-2/+17
* | In email docs, correct spelling of foregoing (GH-9856) (GH-9920)Miss Islington (bot)2018-10-191-1/+1
* | In email.parser in message_from_bytes, update `strict` to `policy` (GH-9854) ...Miss Islington (bot)2018-10-191-1/+1
* | bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606) (GH-9744)Miss Islington (bot)2018-10-192-2/+9
* | bpo-34791: xml package obeys ignore env flags (GH-9544) (GH-9546)Miss Islington (bot)2018-10-193-2/+7
* | Elaborate datetime.timedelta docstring (GH-7458)Miss Islington (bot)2018-10-191-1/+5
* | bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059) (GH-...Miss Islington (bot)2018-10-192-8/+5
* | bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). (GH-9760) (GH...Miss Islington (bot)2018-10-193-4/+14
* | bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660)Miss Islington (bot)2018-10-195-12/+102
* | Fix several reference counting bugs in pyexpat.c. (GH-9955)Miss Islington (bot)2018-10-191-4/+8
* | Updated documentation on logging.debug(). (GH-9946) (GH-9950)Miss Islington (bot)2018-10-181-2/+2
* | bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924)Miss Islington (bot)2018-10-183-31/+83
* | [3.6] bpo-35011: Restore use of pyexpatns.h in libexpat (GH-9939) (GH-9941)Miss Islington (bot)2018-10-182-0/+8
* | [3.6] bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) (GH-9937)Stéphane Wirtel2018-10-175-27/+34
* | [3.6] bpo-23420: Verify the value of '-s' when execute the CLI of cProfile (G...Stéphane Wirtel2018-10-173-3/+15
* | bpo-34521: Add NEWS entry for changes in GH-9613 (GH-9850)Miss Islington (bot)2018-10-161-0/+3
* | bpo-34967: Sphinx is deprecating add_description_unit, use add_object_type (G...Miss Islington (bot)2018-10-162-5/+5
* | bpo-34989: python-gdb.py: fix current_line_num() (GH-9889)Miss Islington (bot)2018-10-152-13/+35
* | fix dangling keyfunc examples in documentation of heapq and sorted (GH-1432)Miss Islington (bot)2018-10-152-7/+7
* | bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9...Miss Islington (bot)2018-10-144-5/+24
* | [3.6] bpo-34941: Fix searching Element subclasses. (GH-9766) (GH-9868)Serhiy Storchaka2018-10-143-12/+31
* | bpo-33656: Move pyshell ctypes import inside try block. (GH-9858)Miss Islington (bot)2018-10-141-3/+3
* | Post release bumpNed Deily2018-10-132-3/+3
* | Merge tag 'v3.6.7rc2' into 3.6Ned Deily2018-10-1318-29/+147
|\ \ | |/
| * 3.6.7rc2v3.6.7rc2Ned Deily2018-10-1318-29/+144
| * bpo-34370: Revert to using released Tk 8.6.8 with macOS installersNed Deily2018-10-132-3/+6
* | Add new tests for bytes and bytearray constructors. (GH-9843)Miss Islington (bot)2018-10-131-3/+43
* | bpo-16965: 2to3 now rewrites execfile() to open with 'rb'. (GH-8569)Miss Islington (bot)2018-10-133-9/+12
* | bpo-34203: FAQ now recommends python 3.x over 2.x (GH-9796)Miss Islington (bot)2018-10-121-6/+8
* | bpo-34900: Make TestCase.debug() work with subtests (GH-9707)Miss Islington (bot)2018-10-123-1/+17
* | bpo-31516: Skip test_main_thread_during_shutdown() with COUNT_ALLOCS builds. ...Miss Islington (bot)2018-10-121-0/+1
* | Fix an incorrect check in compiler_try_except(). (GH-9810)Miss Islington (bot)2018-10-121-1/+2
|/
* [3.6] bpo-34922: Fix integer overflow in the digest() and hexdigest() methods...Miss Islington (bot)2018-10-113-1/+21
* Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)Miss Islington (bot)2018-10-111-2/+4
* [3.6] bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) (GH-...Serhiy Storchaka2018-10-1111-267/+219