summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix statement.Antoine Pitrou2012-06-241-2/+1
| |
* | Alpha -> BetaGeorg Brandl2012-06-241-1/+1
| |
* | Issue #4489: Rename the feature marker for the symlink resistant rmtree and ↵Nick Coghlan2012-06-241-0/+5
| | | | | | | | store it as a function attribute
* | Remove packaging from the standard library.Éric Araujo2012-06-241-29/+18
| | | | | | | | | | | | Distutils2 will live on on PyPI and be included in the stdlib when it is ready. See discussion starting at http://mail.python.org/pipermail/python-dev/2012-June/120430.html
* | Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing ↵Nick Coghlan2012-06-231-0/+7
| | | | | | | | of generator state updates
* | Close #13062: Add inspect.getclosurevars to simplify testing stateful closuresNick Coghlan2012-06-231-0/+10
| |
* | Mention the UTF-16 encoding speedup in the whatsnew (issue #15026).Antoine Pitrou2012-06-151-2/+4
| |
* | Close #13857: Added textwrap.indent() function (initial patch by EzraNick Coghlan2012-06-111-0/+8
| | | | | | | | Berch)
* | Update pydoc topics and fix new suspicious markup.Georg Brandl2012-05-301-1/+1
| |
* | #12586: Expand What's New email entry with provisional policy features.R David Murray2012-05-261-0/+96
| |
* | #14731: add preliminary What's New entry for policy framework.R David Murray2012-05-251-0/+55
| |
* | Placeholder in What's New for the major packaging infrastructure changesNick Coghlan2012-05-251-0/+20
| |
* | Fix typoNick Coghlan2012-05-221-1/+1
| |
* | Remove outdated statement.Antoine Pitrou2012-05-211-5/+0
| |
* | Close #13585: add contextlib.ExitStack to replace the ill-fated ↵Nick Coghlan2012-05-211-0/+15
| | | | | | | | contextlib.nested API
* | Issue #14814: addition of the ipaddress module (stage 1 - code and tests)Nick Coghlan2012-05-201-0/+9
| |
* | Close #14588: added a PEP 3115 compliant dynamic type creation mechanismNick Coghlan2012-05-191-0/+4
| |
* | Add a mention of the new import locks in whatsnew.Antoine Pitrou2012-05-171-0/+17
| |
* | Add mention of decoding optimizations in the what's new document.Antoine Pitrou2012-05-171-0/+4
| |
* | #14807: move undocumented tarfile.filemode() to stat.filemode(). Add ↵Giampaolo Rodola'2012-05-151-0/+8
| | | | | | | | tarfile.filemode alias with deprecation warning.
* | Issue #14417: Mutating a dict during lookup now restarts the lookup instead ↵Antoine Pitrou2012-05-131-7/+0
| | | | | | | | of raising a RuntimeError (undoes issue #14205).
* | Add some whatsnew entriesAntoine Pitrou2012-05-041-0/+55
| |
* | Write the What's New for the importlib stuff.Brett Cannon2012-04-301-0/+122
| |
* | Close #14309: Deprecate time.clock()Victor Stinner2012-04-291-0/+3
| | | | | | | | Use time.perf_counter() or time.process_time() instead.
* | Issue #14428, #14397: Implement the PEP 418Victor Stinner2012-04-291-5/+13
| | | | | | | | | | | | | | | | | | * Rename time.steady() to time.monotonic() * On Windows, time.monotonic() uses GetTickCount/GetTickCount64() instead of QueryPerformanceCounter() * time.monotonic() uses CLOCK_HIGHRES if available * Add time.get_clock_info(), time.perf_counter() and time.process_time() functions
* | Issue #14386: Expose the dict_proxy internal type as types.MappingProxyTypeVictor Stinner2012-04-151-0/+7
| |
* | _decimal is now 100x faster than the Python version in the pi benchmark.Stefan Krah2012-04-091-2/+2
| |
* | A few tweaks to whatsnew/3.3 (fixes #14362)Éric Araujo2012-04-051-8/+41
| |
* | add XXXBenjamin Peterson2012-04-031-0/+2
| |
* | Remove parens around link.Georg Brandl2012-04-011-1/+1
| |
* | Issue #14394: Use elaborate phrases that boil down to "one to two ordersStefan Krah2012-04-011-4/+10
| | | | | | | | of magnitude". Provide link to the benchmarks.
* | #14413: tweak word order in deprecation sectionR David Murray2012-03-261-1/+2
| |
* | Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-211-0/+87
| | | | | | | | | | up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application.
* | updated whatsnew/3.3.rst with the new methods added to list and bytearray ↵Eli Bendersky2012-03-171-0/+4
| | | | | | | | (issue 10516)
* | Issue #10278: Drop time.monotonic() function, rename time.wallclock() to ↵Victor Stinner2012-03-141-2/+1
| | | | | | | | | | | | | | | | | | time.steady() * On Mac OS X, time.steady() now uses mach_absolute_time(), a monotonic clock * Optimistic change: bet that CLOCK_MONOTONIC and CLOCK_REALTIME are available when clock_gettime() is available * Rewrite time.steady() documentation
* | What's New in Python 3.3: Repeat the dict lookup change in Porting sectionVictor Stinner2012-03-131-0/+5
| |
* | Fix doc of datetime.date*.*fromtimestamp() methodsVictor Stinner2012-03-131-0/+5
| |
* | Close #14210: add command argument completion to pdb: complete file names, ↵Georg Brandl2012-03-101-0/+8
| | | | | | | | global/local variables, aliases
* | Close #14248: fix typo.Georg Brandl2012-03-101-1/+1
| |
* | Issue #14205: Document the dict lookup change in What's New in Python 3.3Victor Stinner2012-03-091-0/+7
| |
* | Add todo item about hash randomization.Georg Brandl2012-03-071-0/+2
| |
* | Add some simple examples to the PEP 380 section of What's NewNick Coghlan2012-03-061-0/+47
| |
* | Add PEP 414 to What's New, consolidate memoryview entriesNick Coghlan2012-03-061-5/+20
| |
* | Issue #14200: Add benchmark results to text flow.Martin v. Löwis2012-03-061-13/+10
| |
* | Issue #10181: Add warning that structure layouts in memoryobject.h andStefan Krah2012-02-291-0/+9
| | | | | | | | object.h have changed.
* | Add PyMemoryView_FromMemory() to whatsnew/3.3.Stefan Krah2012-02-291-0/+4
| |
* | Remove duplicate label.Georg Brandl2012-02-261-2/+0
| |
* | Close issue #6210: Implement PEP 409Nick Coghlan2012-02-261-0/+64
| |
* | - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-0/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory.
* | Issue #14040: Remove rarely used file name suffixes for C extensions (under ↵Antoine Pitrou2012-02-201-0/+14
| | | | | | | | | | | | POSIX mainly). This will improve import performance a bit (especially under importlib).