| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #20510: Confirm that the code attribute of the SystemExit | Zachary Ware | 2014-02-19 | 1 | -0/+4 |
| | | | | | | | exception raised by sys.exit is None when no code is given. As suggested by Serhiy Storchaka. | ||||
| * | Issue #20510: Rewrote test_exit in test_sys to match existing comments | Zachary Ware | 2014-02-18 | 1 | -53/+28 |
| | | | | | and to modernize. Patch by Gareth Rees. | ||||
| * | Issue #20532: Tests which use _testcapi now are marked as CPython only. | Serhiy Storchaka | 2014-02-07 | 1 | -0/+1 |
| | | |||||
| * | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -8/+9 |
| | | |||||
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
| | | | | | error messages and comments. | ||||
| * | Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). | Antoine Pitrou | 2013-05-25 | 1 | -5/+5 |
| | | |||||
| * | #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 |
| | | | |||||
| * | | compare singletons by identity not equality (closes #16712) | Benjamin Peterson | 2012-10-09 | 1 | -1/+1 |
| | | | | | | | | | Patch from Serhiy Storchaka. | ||||
| * | | 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. | ||||
| * | | | fix test now that staticmethod and classmethod are bigger | Benjamin Peterson | 2012-02-20 | 1 | -2/+2 |
| | | | | |||||
| * | | | Merge branch 3.2 | Petri Lehtinen | 2012-02-02 | 1 | -0/+3 |
| |\ \ \ | |/ / | | | | | | | Closes #13402. | ||||
| | * | | Document absoluteness of sys.executable | Petri Lehtinen | 2012-02-02 | 1 | -0/+3 |
| | | | | | | | | | | | | | Closes #13402. | ||||
| * | | | Implement PEP 380 - 'yield from' (closes #11682) | Nick Coghlan | 2012-01-13 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #13577: various kinds of descriptors now have a __qualname__ attribute. | Antoine Pitrou | 2011-12-12 | 1 | -4/+4 |
| | | | | | | | | | | | | | Patch by sbt. | ||||
| * | | | PEP 3155 / issue #13448: Qualified name for classes and functions. | Antoine Pitrou | 2011-11-25 | 1 | -2/+2 |
| | | | | |||||
| * | | | Issue #13411: memoryview objects are now hashable when the underlying object ↵ | Antoine Pitrou | 2011-11-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | is hashable. | ||||
| * | | | #13054: sys.maxunicode is now always 0x10FFFF. | Ezio Melotti | 2011-09-28 | 1 | -0/+1 |
| | | | | |||||
| * | | | Use compile() instead of eval(). | Martin v. Löwis | 2011-09-28 | 1 | -6/+4 |
| | | | | |||||
| * | | | Use eval instead of codecs.lookup to trigger UTF-8 generation. | Martin v. Löwis | 2011-09-28 | 1 | -6/+4 |
| | | | | |||||
| * | | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -6/+32 |
| | | | | |||||
| * | | | map cells to arg slots at code creation time (closes #12399) | Benjamin Peterson | 2011-06-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | This removes nested loops in PyEval_EvalCodeEx. | ||||
| * | | | Close #12028: Make threading._get_ident() public, rename it to | Victor Stinner | 2011-05-30 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | threading.get_ident() and document it. This function was used by _thread.get_ident(). | ||||
| * | | | Fix test. | Ezio Melotti | 2011-04-30 | 1 | -1/+1 |
| | | | | |||||
| * | | | Issue #11223: Replace threading._info() by sys.thread_info | Victor Stinner | 2011-04-30 | 1 | -0/+8 |
| | | | | |||||
| * | | | Remove traces of division_warning left over from Python 2 (#10998) | Éric Araujo | 2011-03-26 | 1 | -1/+1 |
| | | | | |||||
| * | | | #11565: Merge with 3.2. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| |\ \ \ | |/ / | |||||
| | * | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| | |\ \ | | |/ | |||||
| | | * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| | | | | |||||
