summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-31972: Improve docstrings for pathlib classes (#5310)chason2018-02-181-0/+1
* Improve error message for "setup.py upload" without dist files (#21060)Éric Araujo2018-02-181-0/+3
* bpo-31333: Re-implement ABCMeta in C (#5273)Ivan Levkivskyi2018-02-181-0/+10
* bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692)Kyle Altendorf2018-02-171-0/+1
* bpo-32436: Add docs for contextvars (#5685)Yury Selivanov2018-02-161-0/+1
* bpo-32841: Fix cancellation in awaiting asyncio.Condition (#5665)Bar Harel2018-02-141-0/+2
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Oren Milman2018-02-131-0/+2
* bpo-32370: Use the correct encoding for ipconfig output in the uuid module. (...Segev Finer2018-02-131-0/+2
* bpo-32837: IDLE - require encoding argument for textview.view_file. (GH-5646)Terry Jan Reedy2018-02-121-0/+2
* bpo-32826: Add "encoding=utf-8" to open() in idle_test/test_help_about. (GH-5...Terry Jan Reedy2018-02-121-0/+5
* bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (#5449)Коренберг Марк2018-02-121-0/+4
* bpo-29248: Fix os.readlink() on Windows (GH-5577)SSE42018-02-121-0/+3
* bpo-11015: Update test.support documentation (GH-5610)Cheryl Sabella2018-02-111-0/+1
* bpo-32792: Preserve mapping order in ChainMap() (GH-5586)Raymond Hettinger2018-02-111-0/+1
* bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609)sblondon2018-02-101-0/+1
* bpo-30688: Support \N{name} escapes in re patterns. (GH-5588)Serhiy Storchaka2018-02-092-0/+3
* bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601)Serhiy Storchaka2018-02-092-0/+3
* bpo-32775: Fix regular expression warnings in fnmatch. (#5583)Serhiy Storchaka2018-02-091-0/+5
* bpo-32585: Add tkinter.ttk.Spinbox. (#5221)Alan D Moore2018-02-092-0/+2
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560)Alexey Izbyshev2018-02-061-0/+3
* bpo-32749: Make dbm.dumb databases more cosistent with other dbm databases. (...Serhiy Storchaka2018-02-051-0/+3
* bpo-8722: Document __getattr__ behavior with AttributeError in property (GH-4...Cheryl Sabella2018-02-051-0/+2
* bpo-32765: Update configdialog General tab create page docstring (GH-5529)Cheryl Sabella2018-02-041-0/+1
* bpo-10544: Disallow "yield" in comprehensions and generator expressions. (GH-...Serhiy Storchaka2018-02-041-0/+2
* bpo-32691: Use mod_spec.parent when running modules with pdb (GH-5474)Mario Corchero2018-02-031-0/+1
* bpo-32734: Fix asyncio.Lock multiple acquire safety issue (GH-5466)Bar Harel2018-02-022-0/+3
* bpo-32614: Modify re examples to use a raw string to prevent warning (GH-5265)Cheryl Sabella2018-02-021-0/+3
* bpo-32303 - Consistency fixes for namespace loaders (#5481)Barry Warsaw2018-02-022-0/+3
* Revert "bpo-31356: Add context manager to temporarily disable GC GH-5495Yury Selivanov2018-02-022-11/+2
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-0/+1
* bpo-32711: Fix warnings for Python/ast_unparse.c (#5426)Stéphane Wirtel2018-02-011-0/+1
* [3.8] bpo-31508: Remove support of arguments in tkinter.ttk.Treeview.selectio...Serhiy Storchaka2018-02-011-0/+3
* bpo-32722: Remove useless example in the Classes tutorial (#5446)Stéphane Wirtel2018-02-011-0/+2
* Update NEWS, docs, and patchlevel for 3.7.0b1Ned Deily2018-01-3188-187/+888
* bpo-32726: Build macOS 10.9+ installer with private copy of Tcl/Tk 8.6Ned Deily2018-01-311-1/+1
* bpo-32583: Fix possible crashing in builtin Unicode decoders (#5325)Xiang Zhang2018-01-311-0/+2
* bpo-30693: zip+tarfile: sort directory listing (#2263)Bernhard M. Wiedemann2018-01-312-0/+2
* bpo-32727: smtplib's SMTP.send_message behaves differently with from_addr and...Stéphane Wirtel2018-01-311-0/+1
* bpo-32726: macOS installer and framework enhancements and changes for 3.7.0 (...Ned Deily2018-01-301-0/+4
* bpo-28440: Don't add /Library/Python/3.x/site-packages to sys.path (#5445)Ned Deily2018-01-301-0/+2
* bpo-32724: Fix references to commands in Doc/pdb.rst (GH-5444)Stéphane Wirtel2018-01-301-0/+2
* bpo-22908: Add seek and tell functionality to ZipExtFile (GH-4966)John Jolly2018-01-301-0/+2
* bpo-31961: subprocess now accepts path-like args (GH-4329)Anders Lorentsen2018-01-301-0/+4
* bpo-32102 Add "capture_output=True" to subprocess.run (GH-5149)Bo Bayles2018-01-302-0/+2
* closes bpo-32721: do not fail test_hashlib if _md5 isn't available (GH-5441)Benjamin Peterson2018-01-301-0/+1
* bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (...Stéphane Wirtel2018-01-301-0/+2
* bpo-21417: Add compresslevel= to the zipfile module (GH-5385)Bo Bayles2018-01-301-0/+1
* bpo-25942: make subprocess more graceful on ^C (GH-5026)Gregory P. Smith2018-01-301-0/+6
* bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...Eric Snow2018-01-301-0/+4
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-301-0/+1