summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Expand)AuthorAgeFilesLines
* bpo-33821: Update IDLE section of What's New 3.7 (#15036)Terry Jan Reedy2019-07-311-1/+10
* bpo-33822: Add IDLE section of What's New 3.8 (#15035)Terry Jan Reedy2019-07-311-0/+27
* bpo-36084: Add threading Native ID information to What's New documentation (G...Jake Tesler2019-07-301-4/+12
* bpo-37268: Add deprecation notice and a DeprecationWarning for the parser mod...Pablo Galindo2019-07-301-0/+4
* bpo-17535: IDLE editor line numbers (GH-14030)Tal Einat2019-07-232-0/+12
* bpo-37481: Deprecate distutils bdist_wininst command (GH-14553)Victor Stinner2019-07-051-0/+4
* bpo-37266: Add bpo number to the What's New entry (GH614584)Victor Stinner2019-07-041-0/+1
* Fix typo in 3.9's Whats new. Pyton -> Python (GH-14567)ILJI CHOI2019-07-031-1/+1
* bpo-37209: Add pickle entry for 3.8 whatsnew (GH-14503)Pierre Glaser2019-07-011-0/+14
* bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Pablo Galindo2019-07-011-0/+5
* bpo-37376: pprint support for SimpleNamespace (GH-14318)Carl Bordum Hansen2019-06-261-0/+6
* bpo-37414: Remove sys.callstats() (GH-14398)Victor Stinner2019-06-261-0/+5
* bpo-37412: os.getcwdb() now uses UTF-8 on Windows (GH-14396)Victor Stinner2019-06-261-0/+5
* bpo-37388: Development mode check encoding and errors (GH-14341)Victor Stinner2019-06-251-0/+9
* bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053)Victor Stinner2019-06-251-0/+8
* Fix minor spelling error in What's new for Python 3.8 (GH-14371)Pablo Galindo2019-06-251-1/+1
* bpo-35224: Add What's new entry for evaluation order in dict comprehensions (...Pablo Galindo2019-06-251-0/+8
* bpo-37392: Remove sys.setcheckinterval() (GH-14355)Victor Stinner2019-06-251-0/+5
* bpo-37351: Removes libpython38.a from standard Windows distribution (#14276)Steve Dower2019-06-211-0/+19
* Update What's New in Python 3.9 (GH-14253)Victor Stinner2019-06-202-1/+2
* Update What's New in Python 3.8 (GH-14239)Victor Stinner2019-06-191-1/+2
* bpo-36710: Remove PyImport_Cleanup() function (GH-14221)Victor Stinner2019-06-191-0/+3
* Document changes in PyNode_AddChild and PyParser_AddToken (GH-14214)Ivan Levkivskyi2019-06-191-0/+2
* bpo-37320: Remove openfp() of aifc, sunau and wave (GH-14169)Victor Stinner2019-06-171-3/+8
* bpo-37194: Add PyObject_CallNoArgs() rationale (GH-14159)Victor Stinner2019-06-171-1/+4
* bpo-37315: Deprecate accepting floats in math.factorial(). (GH-14147)Serhiy Storchaka2019-06-171-0/+5
* bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)Victor Stinner2019-06-171-0/+2
* bpo-37312: Remove _dummy_thread and dummy_threading modules (GH-14143)Victor Stinner2019-06-171-0/+3
* bpo-36707: Document "m" removal from sys.abiflags (GH-14090)Victor Stinner2019-06-151-0/+16
* Document C API changes in What's New in Python 3.8 (GH-14092)Victor Stinner2019-06-141-0/+27
* bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)Victor Stinner2019-06-141-0/+8
* Add 3.9 whatsnew file (GH-14040)Ned Deily2019-06-132-0/+116
* bpo-37253: Document PyCompilerFlags.cf_feature_version (GH-14019)Victor Stinner2019-06-131-0/+5
* bpo-35766: Change format for feature_version to (major, minor) (GH-13992)Guido van Rossum2019-06-121-3/+3
* bpo-35766: What's new in the ast and typing modules (#13984)Guido van Rossum2019-06-111-0/+46
* bpo-36785: PEP 574 What's New entry (#13931)Antoine Pitrou2019-06-091-1/+17
* Add some placeholder notes for major 3.8 features (GH-13927)Nick Coghlan2019-06-091-0/+7
* Add importlib.metadata to what's new. (#13855)Barry Warsaw2019-06-061-1/+4
* bpo-35047: Update whatsnew/3.8 for better mock error message (GH-13746)Petter Strandmark2019-06-041-0/+3
* bpo-36868: Fix what's new for SSLContext.hostname_checks_common_name (GH-13248)Christian Heimes2019-06-031-3/+2
* Add credits to What's New in Python 3.8 (GH-13776)Victor Stinner2019-06-031-1/+18
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-031-0/+4
* bpo-36974: document PEP 590 (GH-13450)Jeroen Demeyer2019-06-021-0/+16
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-021-1/+1
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-021-0/+6
* bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)Serhiy Storchaka2019-06-011-1/+10
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-2/+4
* Move whats-new entry for math.factorial to the math module section. (GH-13723)Mark Dickinson2019-06-011-3/+3
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-2/+1
* Document changes for PyCode_New regarding PEP570 (GH-13706)Pablo Galindo2019-05-311-0/+3