1. 9ab09d1 Merge debug print removal with 3.2. by Ezio Melotti · 12 years ago
  2. 82e60de Remove debug print. by Ezio Melotti · 12 years ago
  3. 8a6d1fe #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  4. a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  5. f7c709d #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  6. 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
  7. e667e98 Issue #16218, #16444: Backport improvment on tests for non-ASCII characters by Victor Stinner · 12 years ago
  8. 33363f4 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  9. 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  10. 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  11. 7b3f0fa Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  12. c9f54cf enable hash randomization by default by Benjamin Peterson · 12 years ago
  13. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  14. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  15. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  16. 39a73a4 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  17. 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  18. 5604ef3 Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  19. d7c8fbf Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  20. fcb17e1 Merge #10206: add test for previously fixed bug. by R David Murray · 13 years ago
  21. e697e37 #10206: add test for previously fixed bug. by R David Murray · 13 years ago
  22. be3bd57 Remove traces of division_warning left over from Python 2 (#10998) by Éric Araujo · 13 years ago
  23. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  24. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  25. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  26. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  27. 9bc3568 Use script_helper in one more test by Antoine Pitrou · 14 years ago
  28. 8581c7e Merged revisions 86081 via svnmerge from by Brian Curtin · 14 years ago
  29. c4ac887 Close subprocess pipes to clear ResourceWarning messages in debug mode. by Brian Curtin · 14 years ago
  30. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  31. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  32. 073f759 Move non-ascii test from test_run_code() to a new function: test_non_ascii() by Victor Stinner · 14 years ago
  33. f6211ed Move test_undecodable_code() from test_sys to test_cmd_line by Victor Stinner · 14 years ago
  34. d793109 Add some debug output in verbose mode by Antoine Pitrou · 14 years ago
  35. f51d8d3 Better Python spawning primitives in test.script_helper, for by Antoine Pitrou · 14 years ago
  36. d26c18a Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory by Nick Coghlan · 14 years ago
  37. 30ba25b Merged revisions 80116 via svnmerge from by Victor Stinner · 14 years ago
  38. 76cf687 Issue #7605: Fix test_cmd_line if the current working directory is not ASCII by Victor Stinner · 14 years ago
  39. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  40. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 14 years ago
  41. 260bd3e Merged revisions 76286-76287,76289-76294,76296-76299,76301-76305,76307,76310-76311,76313-76322 via svnmerge from by Nick Coghlan · 15 years ago
  42. 6ead552 Note that a number of the changes listed below were not applicable to the Py3k branch, and hence the corresponding by Nick Coghlan · 15 years ago
  43. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  44. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  45. 66f8c43 #5924: on Windows, a large PYTHONPATH (more than 255 chars) was completely ignored. by Amaury Forgeot d'Arc · 15 years ago
  46. ab7481a Merged revisions 72817 via svnmerge from by Philip Jenvey · 15 years ago
  47. 39df610 Fix test so as to also pass in debug mode by Antoine Pitrou · 15 years ago
  48. 27fe9fc Followup of #4705: we can't skip the binary buffering layer for stdin because FileIO doesn't have a read1() method by Antoine Pitrou · 15 years ago
  49. 0560843 Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line by Antoine Pitrou · 16 years ago
  50. e255764 Enable this test only when subprocess supports non-ascii arguments. by Amaury Forgeot d'Arc · 16 years ago
  51. f4b2712 Temporarily print some information in test_cmd_line, by Amaury Forgeot d'Arc · 16 years ago
  52. 9a5499b #3705: Command-line arguments were not correctly decoded when the by Amaury Forgeot d'Arc · 16 years ago
  53. 8530e85 Revert r33661, which broke all buildbots. by Amaury Forgeot d'Arc · 16 years ago
  54. 14b7851 #3705: Fix crash when given a non-ascii value on the command line for the "-c" and "-m" parameters by Amaury Forgeot d'Arc · 16 years ago
  55. 8769576 Merged revisions 65686 via svnmerge from by Antoine Pitrou · 16 years ago
  56. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  57. 39e307e Issue2297: Fix a stack overflow in Windows caused by -v and -vv. When python is invoked with -v or -vv under Windows, the process of importing the codec for sys.stderr causes a message to be written to stderr, which in turn causes the codec to be recursively imported. Sometimes the stack overflow exception is swallowed, other times it is not. The bug depends on the particular locale settings of the Windows machine. by Trent Nelson · 16 years ago
  58. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  59. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  60. a1c42a9 Make test_cmd_line work with strict str/bytes. by Guido van Rossum · 17 years ago
  61. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  62. f074b64 Fix test_cmd_line.py. Fix by Christian Heimes. by Guido van Rossum · 17 years ago
  63. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  64. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  65. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  66. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  67. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  68. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  69. e2f8e3c Fix test not to fail on FreeBSD. Directories work also as data by Hye-Shik Chang · 19 years ago
  70. 9356fb9 SF patch #1364545: test_cmd_line.py relied on english error messages when by Walter Dörwald · 19 years ago
  71. 383d3c0 test_directories(): This test had no chance of passing on by Tim Peters · 19 years ago
  72. c252c59 Fix unit test failure -- the output received from Python can be empty, by Guido van Rossum · 19 years ago
  73. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago