Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #14807: move undocumented tarfile.filemode() to stat.filemode(). Add ↵ | Giampaolo Rodola' | 2012-05-15 | 1 | -0/+8 |
| | | | | tarfile.filemode alias with deprecation warning. | ||||
* | Issue #14417: Mutating a dict during lookup now restarts the lookup instead ↵ | Antoine Pitrou | 2012-05-13 | 1 | -7/+0 |
| | | | | of raising a RuntimeError (undoes issue #14205). | ||||
* | Add some whatsnew entries | Antoine Pitrou | 2012-05-04 | 1 | -0/+55 |
| | |||||
* | Write the What's New for the importlib stuff. | Brett Cannon | 2012-04-30 | 1 | -0/+122 |
| | |||||
* | Close #14309: Deprecate time.clock() | Victor Stinner | 2012-04-29 | 1 | -0/+3 |
| | | | | Use time.perf_counter() or time.process_time() instead. | ||||
* | Issue #14428, #14397: Implement the PEP 418 | Victor Stinner | 2012-04-29 | 1 | -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.MappingProxyType | Victor Stinner | 2012-04-15 | 1 | -0/+7 |
| | |||||
* | _decimal is now 100x faster than the Python version in the pi benchmark. | Stefan Krah | 2012-04-09 | 1 | -2/+2 |
| | |||||
* | A few tweaks to whatsnew/3.3 (fixes #14362) | Éric Araujo | 2012-04-05 | 1 | -8/+41 |
| | |||||
* | add XXX | Benjamin Peterson | 2012-04-03 | 1 | -0/+2 |
| | |||||
* | Remove parens around link. | Georg Brandl | 2012-04-01 | 1 | -1/+1 |
| | |||||
* | Issue #14394: Use elaborate phrases that boil down to "one to two orders | Stefan Krah | 2012-04-01 | 1 | -4/+10 |
| | | | | of magnitude". Provide link to the benchmarks. | ||||
* | #14413: tweak word order in deprecation section | R David Murray | 2012-03-26 | 1 | -1/+2 |
| | |||||
* | Issue #7652: Integrate the decimal floating point libmpdec library to speed | Stefan Krah | 2012-03-21 | 1 | -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 Bendersky | 2012-03-17 | 1 | -0/+4 |
| | | | | (issue 10516) | ||||
* | Issue #10278: Drop time.monotonic() function, rename time.wallclock() to ↵ | Victor Stinner | 2012-03-14 | 1 | -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 section | Victor Stinner | 2012-03-13 | 1 | -0/+5 |
| | |||||
* | Fix doc of datetime.date*.*fromtimestamp() methods | Victor Stinner | 2012-03-13 | 1 | -0/+5 |
| | |||||
* | Close #14210: add command argument completion to pdb: complete file names, ↵ | Georg Brandl | 2012-03-10 | 1 | -0/+8 |
| | | | | global/local variables, aliases | ||||
* | Close #14248: fix typo. | Georg Brandl | 2012-03-10 | 1 | -1/+1 |
| | |||||
* | Issue #14205: Document the dict lookup change in What's New in Python 3.3 | Victor Stinner | 2012-03-09 | 1 | -0/+7 |
| | |||||
* | Add todo item about hash randomization. | Georg Brandl | 2012-03-07 | 1 | -0/+2 |
| | |||||
* | Add some simple examples to the PEP 380 section of What's New | Nick Coghlan | 2012-03-06 | 1 | -0/+47 |
| | |||||
* | Add PEP 414 to What's New, consolidate memoryview entries | Nick Coghlan | 2012-03-06 | 1 | -5/+20 |
| | |||||
* | Issue #14200: Add benchmark results to text flow. | Martin v. Löwis | 2012-03-06 | 1 | -13/+10 |
| | |||||
* | Issue #10181: Add warning that structure layouts in memoryobject.h and | Stefan Krah | 2012-02-29 | 1 | -0/+9 |
| | | | | object.h have changed. | ||||
* | Add PyMemoryView_FromMemory() to whatsnew/3.3. | Stefan Krah | 2012-02-29 | 1 | -0/+4 |
| | |||||
* | Remove duplicate label. | Georg Brandl | 2012-02-26 | 1 | -2/+0 |
| | |||||
* | Close issue #6210: Implement PEP 409 | Nick Coghlan | 2012-02-26 | 1 | -0/+64 |
| | |||||
* | - Issue #10181: New memoryview implementation fixes multiple ownership | Stefan Krah | 2012-02-25 | 1 | -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 Pitrou | 2012-02-20 | 1 | -0/+14 |
| | | | | | | POSIX mainly). This will improve import performance a bit (especially under importlib). | ||||
* | merge with 3.2 | Sandro Tosi | 2012-02-19 | 1 | -3/+3 |
|\ | |||||
| * | don't split 'Hye-Shik Chang' name; thanks to Sergey from docs@ | Sandro Tosi | 2012-02-19 | 1 | -3/+3 |
| | | |||||
* | | Issue #13988: cElementTree is deprecated and the _elementtree accelerator is ↵ | Florent Xicluna | 2012-02-13 | 1 | -0/+2 |
| | | | | | | | | automatically used whenever available. | ||||
* | | What's new typo | Antoine Pitrou | 2012-02-12 | 1 | -1/+1 |
| | | |||||
* | | Add section on bz2 module to whatsnew/3.3. | Nadeem Vawda | 2012-02-11 | 1 | -0/+22 |
| | | |||||
* | | Fix typo in whatsnew/3.3. | Nadeem Vawda | 2012-02-11 | 1 | -1/+1 |
| | | |||||
* | | Backout f8409b3d6449: the PEP 410 is not accepted yet | Victor Stinner | 2012-02-08 | 1 | -36/+0 |
| | | |||||
* | | PEP 410 | Victor Stinner | 2012-02-08 | 1 | -0/+36 |
| | | |||||
* | | What's New in 3.3: reorder modules | Victor Stinner | 2012-02-08 | 1 | -79/+79 |
| | | | | | | | | Remove also duplicate functions in the "os" module section | ||||
* | | What's New in 3.3: Fix time module doc | Victor Stinner | 2012-02-08 | 1 | -3/+3 |
| | | |||||
* | | Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to | Charles-François Natali | 2012-02-06 | 1 | -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 file | Charles-François Natali | 2012-02-05 | 1 | -0/+4 |
| | | | | | | | | descriptors. | ||||
* | | Small grammar fixes by Mark Summerfield. | Georg Brandl | 2012-02-04 | 1 | -10/+10 |
| | | |||||
* | | Issue #13835: fixes to What's new 3.3; patch by July Tikhonov | Sandro Tosi | 2012-01-22 | 1 | -3/+3 |
| | | |||||
* | | Close #10278: Add time.wallclock() function, monotonic clock. | Victor Stinner | 2012-01-18 | 1 | -5/+7 |
| | | |||||
* | | merge with 3.2 | Sandro Tosi | 2012-01-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | remove 'Documenting Python' and its references, it's now on devguide | Sandro Tosi | 2012-01-14 | 1 | -1/+1 |
| | | |||||
* | | Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. | Charles-François Natali | 2012-01-14 | 1 | -2/+3 |
| | | |||||
* | | Fix merge glitch in What's New | Nick Coghlan | 2012-01-14 | 1 | -0/+1 |
| | |