summaryrefslogtreecommitdiff
path: root/Lib/test/test_cmd_line.py
Commit message (Expand)AuthorAgeFilesLines
* Close #18754: Run Python child processes in isolated more in the test suite.Victor Stinner2013-10-121-1/+1
* Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-101-0/+26
* Issue #18338: `python --version` now prints version string to stdout, andSerhiy Storchaka2013-07-111-2/+4
* Issue #17206: Fix test_cmd_line and test_faulthandler for my previous changeVictor Stinner2013-06-251-5/+12
* Issue #17516: do not create useless tuple: remove dummy commas in testsVictor Stinner2013-03-261-2/+2
* #17323: The "[X refs, Y blocks]" printed by debug builds has been disabled by...Ezio Melotti2013-03-261-0/+28
* Merge debug print removal with 3.3.Ezio Melotti2012-11-231-1/+18
|\
| * #16306: merge with 3.3.Ezio Melotti2012-11-231-3/+15
| |\
| * | #16309: avoid using deprecated method and turn docstring in a comment.Ezio Melotti2012-11-231-6/+6
| * | #16306: merge with 3.3.Ezio Melotti2012-11-181-1/+18
| |\ \
| | * \ Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-0/+12
| | |\ \
| | * | | Issue #16414: Add support.FS_NONASCII and support.TESTFN_NONASCIIVictor Stinner2012-11-061-3/+3
| | * | | Issue #7317: Display full tracebacks when an error occurs asynchronously.Andrew Svetlov2012-11-031-1/+1
| | * | | Issue #16309: Make PYTHONPATH= behavior the same as if PYTHONPATH not set at ...Andrew Svetlov2012-11-031-0/+17
* | | | | Merge debug print removal with 3.2.Ezio Melotti2012-11-231-4/+0
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Remove debug print.Ezio Melotti2012-11-231-4/+0
* | | | | #16306: merge with 3.2.Ezio Melotti2012-11-231-14/+8
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | #16306: merge with 3.2.Ezio Melotti2012-11-181-1/+8
| |\ \ \
| * | | | Issue #16218, #16444: Backport improvment on tests for non-ASCII charactersVictor Stinner2012-11-121-3/+3
| | |_|/ | |/| |
| * | | Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-11/+5
| |\ \ \ | | | |/ | | |/|
| | * | Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-041-0/+17
| | * | enable hash randomization by defaultBenjamin Peterson2012-02-211-2/+2
| | * | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-9/+3
| | |\ \
| | | * \ Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-9/+3
| | | |\ \
| | | | * \ Issue #13444: When stdout has been closed explicitly, we should not attempt t...Antoine Pitrou2011-11-261-0/+19
| | | | |\ \
| | | | * \ \ Merge #10206: add test for previously fixed bug.R David Murray2011-06-241-0/+7
| | | | |\ \ \
| | | | * | | | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-261-6/+0
| | | | * | | | Normalize the encoding names for Latin-1 and UTF-8 toMarc-André Lemburg2011-02-251-2/+2
| | | | * | | | Issue #11272: Fix input() and sys.stdin for Windows newlineVictor Stinner2011-02-231-0/+26
* | | | | | | | #16306: report only the first unknown option and add more tests. Patch by Se...Ezio Melotti2012-11-231-3/+15
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | #16306: Fix multiple error messages when unknown command line parameters wher...Ezio Melotti2012-11-181-1/+8
|/ / / / / /
* | | | | | Issue #15001: fix segfault on "del sys.module['__main__']"Hynek Schlawack2012-11-071-0/+12
* | | | | | Close #13119: use "\r\n" newline for sys.stdout/err on WindowsVictor Stinner2012-08-041-0/+17
|/ / / / /
* | | | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-105/+246
|\ \ \ \ \ | |/ / / /
| * | | | Issue #7111: Python can now be run without a stdin, stdout or stderr stream.Antoine Pitrou2011-11-281-0/+39
| | |_|/ | |/| |
| * | | Issue #13444: When stdout has been closed explicitly, we should not attempt t...Antoine Pitrou2011-11-261-0/+19
| | |/ | |/|
| * | #10206: add test for previously fixed bug.R David Murray2011-06-241-0/+7
| * | Merged revisions 88530 via svnmerge fromVictor Stinner2011-02-231-0/+26
| |/
| * Issue #10601: sys.displayhook uses 'backslashreplace' error handler onVictor Stinner2010-12-041-0/+18
| * Use script_helper in one more testAntoine Pitrou2010-11-091-28/+14
| * Close subprocess pipes to clear ResourceWarning messages in debug mode.Brian Curtin2010-11-011-0/+1
| * Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-211-0/+9
| * Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead ofVictor Stinner2010-10-201-0/+32
| * Move non-ascii test from test_run_code() to a new function: test_non_ascii()Victor Stinner2010-10-201-7/+9
| * Move test_undecodable_code() from test_sys to test_cmd_lineVictor Stinner2010-10-201-0/+38
| * Add some debug output in verbose modeAntoine Pitrou2010-10-081-0/+4
| * Better Python spawning primitives in test.script_helper, forAntoine Pitrou2010-10-081-49/+27
| * Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the mod...Nick Coghlan2010-08-171-5/+1
| * Issue #7605: Fix test_cmd_line if the current working directory is not ASCIIVictor Stinner2010-04-161-2/+9
| * Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-141-1/+0