summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
* #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).
* merge with 3.2Sandro Tosi2012-02-191-3/+3
|\
| * don't split 'Hye-Shik Chang' name; thanks to Sergey from docs@Sandro Tosi2012-02-191-3/+3
| |
* | Issue #13988: cElementTree is deprecated and the _elementtree accelerator is ↵Florent Xicluna2012-02-131-0/+2
| | | | | | | | automatically used whenever available.
* | What's new typoAntoine Pitrou2012-02-121-1/+1
| |
* | Add section on bz2 module to whatsnew/3.3.Nadeem Vawda2012-02-111-0/+22
| |
* | Fix typo in whatsnew/3.3.Nadeem Vawda2012-02-111-1/+1
| |
* | Backout f8409b3d6449: the PEP 410 is not accepted yetVictor Stinner2012-02-081-36/+0
| |
* | PEP 410Victor Stinner2012-02-081-0/+36
| |
* | What's New in 3.3: reorder modulesVictor Stinner2012-02-081-79/+79
| | | | | | | | Remove also duplicate functions in the "os" module section
* | What's New in 3.3: Fix time module docVictor Stinner2012-02-081-3/+3
| |
* | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), toCharles-François Natali2012-02-061-1/+1
| | | | | | | | | | be consistent with other functions accepting file descriptors (fdlistdir() was added in 3.3, so hasn't been released yet).
* | Issue #13734: Add os.fwalk(), a directory walking function yielding fileCharles-François Natali2012-02-051-0/+4
| | | | | | | | descriptors.
* | Small grammar fixes by Mark Summerfield.Georg Brandl2012-02-041-10/+10
| |
* | Issue #13835: fixes to What's new 3.3; patch by July TikhonovSandro Tosi2012-01-221-3/+3
| |
* | Close #10278: Add time.wallclock() function, monotonic clock.Victor Stinner2012-01-181-5/+7
| |
* | merge with 3.2Sandro Tosi2012-01-141-1/+1
|\ \ | |/
| * remove 'Documenting Python' and its references, it's now on devguideSandro Tosi2012-01-141-1/+1
| |
* | Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode.Charles-François Natali2012-01-141-2/+3
| |
* | Fix merge glitch in What's NewNick Coghlan2012-01-141-0/+1
| |
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-1/+16
| |
* | Issue #12760: Add a create mode to open(). Patch by David Townshend.Charles-François Natali2012-01-091-0/+9
| |
* | Issue #12042: merge with 3.2Sandro Tosi2012-01-051-2/+2
|\ \ | |/
| * Issue #12042: a queue is only used to retrive results; preliminary patch by ↵Sandro Tosi2012-01-051-2/+2
| | | | | | | | Jordan Stadler
* | Fix PyUnicode_Fill() doc: return type is Py_ssize_t, not intVictor Stinner2012-01-041-1/+1
| |
* | Add whatsnew itemsAntoine Pitrou2011-12-231-0/+12
| |
* | Issue #13597: Fix the documentation of the "-u" command-line option, and ↵Antoine Pitrou2011-12-211-3/+7
|\ \ | |/ | | | | wording of "What's new in Python 3.0" about standard streams.
| * Issue #13597: Fix the documentation of the "-u" command-line option, and ↵Antoine Pitrou2011-12-211-3/+7
| | | | | | | | wording of "What's new in Python 3.0" about standard streams.
* | Issue #13624: Write a specialized UTF-8 encoder to allow more optimizationVictor Stinner2011-12-181-1/+3
| | | | | | | | The main bottleneck was the PyUnicode_READ() macro.
* | What's New in Python 3.3: complete the deprecation listVictor Stinner2011-12-171-0/+3
| | | | | | | | Add also FIXMEs in unicodeobject.c
* | property -> staticmethodBenjamin Peterson2011-12-161-1/+1
| |
* | improve abstract property support (closes #11610)Benjamin Peterson2011-12-151-0/+17
| | | | | | | | Thanks to Darren Dale for patch.