summaryrefslogtreecommitdiff
path: root/Lib/test/test_sys.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36611: Fix test_sys.test_getallocatedblocks() (GH-12797)Miss Islington (bot)2019-04-121-2/+7
* Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off...Victor Stinner2018-09-191-5/+3
* [3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by defa...Victor Stinner2018-09-171-3/+5
* [3.7] bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) (GH-8987)Victor Stinner2018-08-291-11/+17
* bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6...Miss Islington (bot)2018-04-241-0/+3
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-3/+5
* bpo-32101: Add PYTHONDEVMODE environment variable (#4624)Victor Stinner2017-11-301-2/+4
* bpo-32030: Rework memory allocators (#4625)Victor Stinner2017-11-291-1/+8
* bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....Serhiy Storchaka2017-11-151-0/+33
* Fix the sizeof test for dicts with shared keys. (#4311)Serhiy Storchaka2017-11-071-5/+10
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-221-2/+2
* bpo-31344: Per-frame control of trace events (GH-3417)Nick Coghlan2017-09-081-1/+1
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-30/+2
* bpo-28180: Implementation for PEP 538 (#659)Nick Coghlan2017-06-111-0/+1
* bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168)Dong-hee Na2017-04-201-3/+5
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-1/+0
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-0/+3
* Issue #18896: Python function can now have more than 255 parameters.Serhiy Storchaka2016-12-161-1/+1
* Add sys.getandroidapilevel()Victor Stinner2016-12-021-0/+7
* Try to fix sizeof unit tests on dictVictor Stinner2016-09-091-3/+3
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+26
* Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-081-1/+1
* Add a new private version to the builtin dict typeVictor Stinner2016-09-081-3/+3
* Fixes tests broken by issue #27781.Steve Dower2016-09-081-2/+3
* Implement compact dictVictor Stinner2016-09-071-5/+5
* fix expected layout of code objectsBenjamin Peterson2016-09-071-3/+3
* Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-051-1/+1
* Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-031-2/+6
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #25339: PYTHONIOENCODING now has priority over locale in setting theSerhiy Storchaka2016-04-101-4/+23
* Fixed sizeof tests for dict and type (they were passed by accident).Serhiy Storchaka2015-12-201-11/+22
* Don't create non-needed file.Serhiy Storchaka2015-12-201-5/+0
* Use correct PyGC_Head size in tests for issue #25421.Serhiy Storchaka2015-12-191-1/+1
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-0/+30
* sys.setrecursionlimit() now raises RecursionErrorVictor Stinner2015-10-131-7/+45
* (Merge 3.4) Issue #25274: test_recursionlimit_recovery() of test_sys now checksVictor Stinner2015-10-011-2/+3
|\
| * Issue #25274: test_recursionlimit_recovery() of test_sys now checksVictor Stinner2015-10-011-2/+3
* | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-3/+3
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-2/+2
* | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-2/+2
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-2/+3
|\ \ | |/
| * Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...Antoine Pitrou2015-03-101-2/+3
* | merge 3.4Benjamin Peterson2015-02-021-1/+1
|\ \ | |/
| * adjust for py3k module renamingBenjamin Peterson2015-02-021-1/+1
* | merge 3.4Benjamin Peterson2015-02-021-0/+1
|\ \ | |/
| * _clear_type_cache is cpython-onlyBenjamin Peterson2015-02-021-0/+1
* | Closes #22668: Merge from 3.4.Stefan Krah2015-01-291-1/+1
|\ \ | |/
* | Issue #23119: Simplify setobject by inlining the special case for unicode eq...Raymond Hettinger2015-01-251-1/+1
* | Issue 23261: Clean-up the hack to store the set.pop() search finger in a has...Raymond Hettinger2015-01-181-1/+1
* | Issue #22696: Add function :func:`sys.is_finalizing` to know about interprete...Antoine Pitrou2014-12-071-0/+21