Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix the C definition of the sys._debugmallocstats() function: the function has | Victor Stinner | 2013-12-19 | 1 | -0/+3 |
| | | | | no parameter | ||||
* | Issue #14432: Remove the thread state field from the frame structure. Fix a | Victor Stinner | 2013-12-13 | 1 | -1/+1 |
| | | | | | | | crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup. | ||||
* | Issue #19751: Fix hash_info test of test_sys on SPARC Solaris | Victor Stinner | 2013-12-12 | 1 | -5/+1 |
| | |||||
* | Issue #19751: Fix typo in configuration option | Victor Stinner | 2013-12-12 | 1 | -1/+1 |
| | |||||
* | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. | Christian Heimes | 2013-11-20 | 1 | -1/+22 |
| | | | | Python now uses SipHash24 on all major platforms. | ||||
* | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -8/+9 |
| | |||||
* | Issue #18948: improve SuppressCoreFiles to include Windows crash popup ↵ | Antoine Pitrou | 2013-10-08 | 1 | -1/+1 |
| | | | | | | suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware. | ||||
* | Issue #19087: Improve bytearray allocation in order to allow cheap popping ↵ | Antoine Pitrou | 2013-10-05 | 1 | -1/+1 |
| | | | | of data at the front (slice deletion). | ||||
* | Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. | Serhiy Storchaka | 2013-09-13 | 1 | -0/+36 |
| | |||||
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
|\ | | | | | | | error messages and comments. | ||||
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
| | | | | | | | | error messages and comments. | ||||
* | | Issue #16400: Add command line option for isolated mode. | Christian Heimes | 2013-08-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | -I Run Python in isolated mode. This also implies -E and -s. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting malicious code. | ||||
* | | Issue #17934: Add a clear() method to frame objects, to help clean up ↵ | Antoine Pitrou | 2013-08-05 | 1 | -1/+1 |
| | | | | | | | | expensive details (local variables) and break reference cycles. | ||||
* | | Issue #18214: Improve finalization of Python modules to avoid setting their ↵ | Antoine Pitrou | 2013-07-31 | 1 | -1/+1 |
| | | | | | | | | globals to None, in most cases. | ||||
* | | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 1 | -2/+2 |
| | | |||||
* | | Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). | Antoine Pitrou | 2013-05-25 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). | Antoine Pitrou | 2013-05-25 | 1 | -5/+5 |
| | | |||||
* | | Backout c89febab4648 following private feedback by Guido. | Antoine Pitrou | 2013-05-14 | 1 | -1/+1 |
| | | | | | | | | (Issue #17807: Generators can now be finalized even when they are part of a reference cycle) | ||||
* | | Issue #17807: Generators can now be finalized even when they are part of a ↵ | Antoine Pitrou | 2013-05-08 | 1 | -1/+1 |
| | | | | | | | | reference cycle. | ||||
* | | #17493: merge with 3.3. | Ezio Melotti | 2013-03-20 | 1 | -11/+9 |
|\ \ | |/ | |||||
| * | #17493: merge with 3.2. | Ezio Melotti | 2013-03-20 | 1 | -11/+9 |
| |\ | |||||
| | * | #17493: re-enable a test on Windows. Patch by Zachary Ware. | Ezio Melotti | 2013-03-20 | 1 | -11/+9 |
| | | | |||||
* | | | Relax test when WITH_PYMALLOC is false or undefined. | Antoine Pitrou | 2012-12-18 | 1 | -1/+4 |
| | | | |||||
* | | | Following issue #13390, fix compilation --without-pymalloc, and make ↵ | Antoine Pitrou | 2012-12-17 | 1 | -1/+6 |
| | | | | | | | | | | | | sys.getallocatedblocks() return 0 in that situation. | ||||
* | | | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the ↵ | Antoine Pitrou | 2012-12-09 | 1 | -0/+24 |
| | | | | | | | | | | | | | | | | | | number of memory blocks currently allocated. Also, the ``-R`` option to regrtest uses this function to guard against memory allocation leaks. | ||||
* | | | merge 3.3 | Benjamin Peterson | 2012-10-09 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | compare singletons by identity not equality (closes #16712) | Benjamin Peterson | 2012-10-09 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch from Serhiy Storchaka. | ||||
* | | | Closes #16135: Removal of OS/2 support | Jesus Cea | 2012-10-05 | 1 | -1/+1 |
|/ / | |||||
* | | Fix test_sys.test_implementation for final releases.v3.3.0 | Georg Brandl | 2012-09-29 | 1 | -1/+1 |
| | | |||||
* | | Merge universal newlines-related fixes (issue #13119) | Antoine Pitrou | 2012-08-04 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Fix test_sys under Windows (issue #13119) | Antoine Pitrou | 2012-08-04 | 1 | -1/+2 |
| | | |||||
* | | Issue #15467: Merge 3.2 | Martin v. Löwis | 2012-07-29 | 1 | -125/+89 |
|\ \ | |/ | |||||
| * | Issue #15467: Move helpers for __sizeof__ tests into test_support. | Martin v. Löwis | 2012-07-29 | 1 | -119/+83 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Issue #15456: Fix code __sizeof__ after #12399 change. | Martin v. Löwis | 2012-07-26 | 1 | -0/+6 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory ↵ | David Malcolm | 2012-06-22 | 1 | -0/+6 |
| | | | | | | | | allocation issues | ||||
* | | Whitespace normalization | Barry Warsaw | 2012-06-04 | 1 | -1/+1 |
| | | |||||
* | | PEP 421 requires that .name be lower case. | Barry Warsaw | 2012-06-04 | 1 | -0/+4 |
| | | |||||
* | | Eric Snow's implementation of PEP 421. | Barry Warsaw | 2012-06-03 | 1 | -0/+18 |
| | | | | | | | | Issue 14673: Add sys.implementation | ||||
* | | Issue #14930: Make memoryview objects weakrefable. | Richard Oudkerk | 2012-05-28 | 1 | -1/+1 |
| | | |||||
* | | Implemented PEP 405 (Python virtual environments). | Vinay Sajip | 2012-05-26 | 1 | -0/+4 |
| | | |||||
* | | PEP 415: Implement suppression of __context__ display with an exception ↵ | Benjamin Peterson | 2012-05-15 | 1 | -3/+3 |
| | | | | | | | | | | | | attribute This replaces the original PEP 409 implementation. See #14133. | ||||
* | | Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. | Brett Cannon | 2012-04-29 | 1 | -3/+0 |
| | | |||||
* | | Account for shared keys in type's __sizeof__ (#13903). | Martin v. Loewis | 2012-04-24 | 1 | -3/+9 |
| | | |||||
* | | Implement PEP 412: Key-sharing dictionaries (closes #13903) | Benjamin Peterson | 2012-04-23 | 1 | -3/+3 |
| | | | | | | | | Patch from Mark Shannon. | ||||
* | | perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) | Benjamin Peterson | 2012-03-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | This allows generators that are using yield from to be seen by debuggers. It also kills the f_yieldfrom field on frame objects. Patch mostly from Mark Shannon with a few tweaks by me. | ||||
* | | adjust for change in AST type | Benjamin Peterson | 2012-03-12 | 1 | -1/+1 |
| | | |||||
* | | - Issue #10181: New memoryview implementation fixes multiple ownership | Stefan Krah | 2012-02-25 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵ | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. | ||||
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, ↵ | Georg Brandl | 2012-02-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. |