summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 3.6.6rc1v3.6.6rc1Ned Deily2018-06-1290-168/+0
* bpo-31432: Clarify ssl CERT_NONE/OPTIONAL/REQUIRED docs. (GH-3530) (GH-7652)Ned Deily2018-06-111-0/+2
* bpo-33656: On Windows, add API call saying that tk scales for DPI (GH-7137)Miss Islington (bot)2018-06-111-0/+4
* bpo-30167: Prevent site.main() exception if PYTHONSTARTUP is set. (GH-6731) (...Miss Islington (bot)2018-06-101-0/+1
* bpo-33812: Corrected astimezone for naive datetimes. (GH-7578) (GH-7601)Miss Islington (bot)2018-06-101-0/+2
* bpo-30805: Avoid race condition with debug logging (GH-7545)Miss Islington (bot)2018-06-081-0/+1
* bpo-11874: fix assertion failure in argparse metavar handling (GH-1826)Miss Islington (bot)2018-06-081-0/+2
* bpo-33768: IDLE: Clicking on code context line moves it to top of editor (GH-...Miss Islington (bot)2018-06-071-0/+1
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-071-0/+1
* bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)Miss Islington (bot)2018-06-072-21/+5
* bpo-5755: Move -Wstrict-prototypes to CFLAGS_NODIST (GH-7395)INADA Naoki2018-06-061-0/+3
* bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)Miss Islington (bot)2018-06-051-0/+3
* Enable the verbose build for extension modules with GNU make (GH-6659)Miss Islington (bot)2018-06-041-0/+2
* bpo-31849: Fix warning in pyhash.c (GH-6799)Miss Islington (bot)2018-06-041-0/+1
* bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)Miss Islington (bot)2018-06-041-0/+1
* bpo-33664: Scroll IDLE editor text by lines (GH-7351)Miss Islington (bot)2018-06-041-0/+5
* bpo-33679: IDLE: Re-enable color configuration for code context (GH-7199)Miss Islington (bot)2018-06-011-0/+12
* bpo-33642: IDLE: Use variable number of lines in CodeContext. (GH-7106)Miss Islington (bot)2018-06-011-0/+9
* bpo-31238: pydoc ServerThread.stop() now joins itself (GH-3151) (GH-7324)Victor Stinner2018-06-011-0/+3
* bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146) (GH...Miss Islington (bot)2018-06-011-0/+2
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Yury Selivanov2018-05-291-0/+1
* bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) (#...Miss Islington (bot)2018-05-291-0/+2
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7180)Yury Selivanov2018-05-291-0/+1
* bpo-33674: asyncio: Fix SSLProtocol race (GH-7175) (GH-7188)Victor Stinner2018-05-291-0/+4
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Miss Islington (bot)2018-05-281-0/+1
* bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149...Miss Islington (bot)2018-05-281-0/+2
* bpo-33614: Ensures module definition files for the stable ABI on Windows are ...Miss Islington (bot)2018-05-281-0/+2
* bpo-33655: Also ignore test_posix_fallocate failures on BSD platforms (GH-7134)Miss Islington (bot)2018-05-261-0/+2
* bpo-33012: Add -Wno-cast-function-type for gcc 8. (GH-6757)Miss Islington (bot)2018-05-251-0/+2
* [3.6] bpo-26819: Prevent proactor double read on resume (GH-6921) (#7110)CtrlZvi2018-05-251-0/+2
* [3.6] bpo-33622: Fix issues with handling errors in the GC. (GH-7078) (GH-7095)Serhiy Storchaka2018-05-241-0/+4
* bpo-33628: IDLE: Minor code cleanup of codecontext.py and its tests (GH-7085)Miss Islington (bot)2018-05-231-0/+2
* bpo-30877: Fix clearing a cache in the the JSON decoder. (GH-7048)Miss Islington (bot)2018-05-221-0/+3
* [3.6] bpo-33542: Ignore DUID in uuid.get_node on Windows. (GH-6922) (GH-7014)Serhiy Storchaka2018-05-211-0/+2
* [3.6] bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450) (#7025)Andrew Svetlov2018-05-211-0/+1
* bpo-32831: IDLE: Add docstrings and tests for codecontext (GH-5638)Miss Islington (bot)2018-05-191-0/+1
* bpo-32282: Remove unnecessary check for `VersionHelpers.h` in `socketmodule.c...Miss Islington (bot)2018-05-181-0/+2
* bpo-33564: Add async to IDLE's code context block openers. (GH-6960)Miss Islington (bot)2018-05-171-0/+1
* bpo-33522: Enable CI builds on Visual Studio Team Services (GH-6865) (GH-6925)Steve Dower2018-05-172-0/+3
* [3.6] bpo-33503: Fix the broken pypi link in the source and the documentation...Stéphane Wirtel2018-05-161-0/+1
* [3.6] bpo-29706: IDLE now colors async and await as keywords in 3.6. (#6879)Terry Jan Reedy2018-05-151-0/+2
* bpo-16865: Support arrays >=2GB in ctypes. (GH-3006)Miss Islington (bot)2018-05-141-0/+1
* Add AsyncContextManager to typing module documentation. (GH-6823)Travis DePrato2018-05-141-0/+1
* [3.7] bpo-32861: urllib.robotparser fix incomplete __str__ methods. (GH-5711)...Miss Islington (bot)2018-05-151-0/+3
* bpo-28055: Fix unaligned accesses in siphash24(). (GH-6123)Miss Islington (bot)2018-05-131-0/+1
* Backport recent typing updates (GH-6759)Ivan Levkivskyi2018-05-101-0/+3
* bpo-21983: Fix a crash in ctypes.cast() when passed a ctypes structured data ...Miss Islington (bot)2018-05-091-0/+2
* [3.6] bpo-20087: Update locale alias mapping with glibc 2.27 supported locale...Miss Islington (bot)2018-05-061-0/+1
* bpo-33422: Fix quotation marks getting deleted when looking up byte/string li...Miss Islington (bot)2018-05-051-0/+2
* bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)Miss Islington (bot)2018-05-021-0/+1