| Commit message (Expand) | Author | Age | Files | Lines |
* | 00147-add-debug-malloc-stats.patch | Fedora Python maintainers | 2020-09-29 | 1 | -0/+26 |
|
|
* | [2.7] bpo-31692: Add PYTHONSHOWALLOCCOUNT env var (GH-3927) | Victor Stinner | 2017-10-17 | 1 | -1/+4 |
|
|
* | Issue #14376: sys.exit now accepts longs as well as ints. Thanks Gareth Rees. | Mark Dickinson | 2017-02-02 | 1 | -0/+11 |
|
|
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|
|
* | Fixed sizeof tests for dict and type (they were passed by accident). | Serhiy Storchaka | 2015-12-20 | 1 | -9/+21 |
|
|
* | Create a file in SizeofTest only if needed. | Serhiy Storchaka | 2015-12-20 | 1 | -7/+12 |
|
|
* | Use correct PyGC_Head size in tests for issue #25421. | Serhiy Storchaka | 2015-12-19 | 1 | -1/+1 |
|
|
* | Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. | Serhiy Storchaka | 2015-12-19 | 1 | -2/+31 |
|
|
* | Issue #25703: Skip test_43581 if one of stdout or stderr is redirected. | Serhiy Storchaka | 2015-11-25 | 1 | -1/+4 |
|
|
* | _clear_type_cache is cpython-only | Benjamin Peterson | 2015-02-02 | 1 | -0/+1 |
|
|
* | fix this test when sizeof(long) < sizeof(size_t) | Benjamin Peterson | 2014-11-23 | 1 | -1/+1 |
|
|
* | Issue #22193: Fixed integer overflow error in sys.getsizeof(). | Serhiy Storchaka | 2014-11-15 | 1 | -0/+25 |
|
|
* | Issue #20510: Confirm that the code attribute of the SystemExit | Zachary Ware | 2014-02-19 | 1 | -0/+4 |
|
|
* | Issue #20510: Rewrote test_exit in test_sys to match existing comments | Zachary Ware | 2014-02-18 | 1 | -55/+31 |
|
|
* | 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 #15467: Move helpers for __sizeof__ tests into test_support. | Martin v. Löwis | 2012-07-29 | 1 | -120/+87 |
|
|
* | merge 2.6 with hash randomization fix | Benjamin Peterson | 2012-02-21 | 1 | -1/+1 |
|\ |
|
| * | - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED | Barry Warsaw | 2012-02-21 | 1 | -1/+1 |
|
|
| * | Merged revisions 77942,79023 via svnmerge from | Ezio Melotti | 2010-08-02 | 1 | -2/+4 |
|
|
| * | Merged revisions 81537 via svnmerge from | Victor Stinner | 2010-05-25 | 1 | -0/+20 |
|
|
| * | Merged revisions 78835-78837,78870 via svnmerge from | Victor Stinner | 2010-03-21 | 1 | -0/+14 |
|
|
| * | Merged revisions 77989 via svnmerge from | Antoine Pitrou | 2010-02-05 | 1 | -1/+1 |
|
|
| * | Merged revisions 77892 via svnmerge from | Victor Stinner | 2010-01-31 | 1 | -0/+4 |
|
|
| * | Merged revisions 70866-70868,70870-70871,70893,70896,70902,70905,70907,70912,... | Georg Brandl | 2009-04-05 | 1 | -0/+5 |
|
|
* | | Document absoluteness of sys.executable | Petri Lehtinen | 2012-02-02 | 1 | -0/+3 |
|
|
* | | Issue #13546: Fixed an overflow issue that could crash the intepreter when | Amaury Forgeot d'Arc | 2011-12-07 | 1 | -0/+12 |
|
|
* | | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -6/+6 |
|
|
* | | Redo r83142 merge manually. QOTD: svnmerge isn't really your best friend | Alexander Belopolsky | 2010-07-28 | 1 | -2/+2 |
|
|
* | | Reverted r83142: bad svnmerge | Alexander Belopolsky | 2010-07-28 | 1 | -2/+2 |
|
|
* | | Merged revisions 83140-83141 via svnmerge from | Alexander Belopolsky | 2010-07-25 | 1 | -2/+2 |
|
|
* | | Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and | Victor Stinner | 2010-05-25 | 1 | -0/+20 |
|
|
* | | Issue #8268: Old-style classes (not just instances) now support weak | Antoine Pitrou | 2010-03-31 | 1 | -1/+1 |
|
|
* | | Backported PyCapsule from 3.1, and converted most uses of | Larry Hastings | 2010-03-25 | 1 | -0/+1 |
|
|
* | | Add support for weak references to code objects. This will be used by an opti... | Collin Winter | 2010-03-18 | 1 | -1/+1 |
|
|
* | | #7092: silence some more py3k warnings. | Ezio Melotti | 2010-03-17 | 1 | -2/+4 |
|
|
* | | Another fix to test_executable() of test_sys: set the current working to avoid | Victor Stinner | 2010-03-11 | 1 | -1/+4 |
|
|
* | | Fix test_executable introduce in previous commit (r78835): Windows is able to | Victor Stinner | 2010-03-11 | 1 | -2/+2 |
|
|
* | | Issue #7774: Set sys.executable to an empty string if argv[0] has been | Victor Stinner | 2010-03-11 | 1 | -0/+11 |
|
|
* | | Remove unused imports in test modules. | Georg Brandl | 2010-02-07 | 1 | -2/+2 |
|
|
* | | Issue #5677: Explicitly forbid write operations on read-only file objects, | Antoine Pitrou | 2010-02-05 | 1 | -1/+1 |
|
|
* | | Issue #7819: Check sys.call_tracing() arguments types. | Victor Stinner | 2010-01-31 | 1 | -0/+4 |
|
|
* | | Added named (but not numbered) attributes to sys.getwindowsversion() test. | Eric Smith | 2010-01-27 | 1 | -0/+4 |
|
|
* | | Switch to test_support.get_attribute. | Eric Smith | 2010-01-27 | 1 | -23/+24 |
|
|
* | | Removed unneeded test. | Eric Smith | 2010-01-27 | 1 | -1/+0 |
|
|
* | | Issue #7766: Change sys.getwindowsversion() return value to a named tuple and... | Eric Smith | 2010-01-27 | 1 | -1/+17 |
|
|
* | | use assert[Not]IsInstance where appropriate | Ezio Melotti | 2010-01-24 | 1 | -29/+29 |
|
|
* | | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -9/+8 |
|
|
* | | Reverting the Revision: 77368. I committed Flox's big patch for tests by | Senthil Kumaran | 2010-01-08 | 1 | -9/+3 |
|
|
* | | Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ... | Senthil Kumaran | 2010-01-08 | 1 | -3/+9 |
|
|