1. c9a271c Issue #3080: case_ok() expects Unicode strings by Victor Stinner · 14 years ago
  2. 547a2a6 Issue #3080: find_init_module() expects Unicode by Victor Stinner · 14 years ago
  3. d029621 Issue #3080: Refactor find_module_path(), use return instead of break by Victor Stinner · 14 years ago
  4. df75a02 Issue #3080: find_module() sets an empty path for builtin and frozen modules by Victor Stinner · 14 years ago
  5. 533d783 Issue #3080: Rename some path variables to path_list by Victor Stinner · 14 years ago
  6. ad3c03b Issue #3080: find_module() expects module fullname and subname as Unicode by Victor Stinner · 14 years ago
  7. 58d3711 Issue #3080: Drop OS/2 support for the import machinery by Victor Stinner · 14 years ago
  8. 9599de5 Issue #3080: Reindent and simplify import_submodule() by Victor Stinner · 14 years ago
  9. c24c810 Issue #3080: Use %R to format module name in error messages by Victor Stinner · 14 years ago
  10. 974389d Issue #3080: Use Unicode for the "The Magnum Opus of dotted-name import" by Victor Stinner · 14 years ago
  11. 2e5f11a Issue #3080: PyImport_ImportModuleNoBlock() uses Unicode by Victor Stinner · 14 years ago
  12. 41c5fec Issue #3080: load_module() expects name and path as Unicode by Victor Stinner · 14 years ago
  13. 2f42ae5 Issue #3080: Use Unicode to import source and compiled modules by Victor Stinner · 14 years ago
  14. c9abda0 Issue #3080: get_sourcefile(), make_source_pathname(), load_package() by Victor Stinner · 14 years ago
  15. d68c2cf Issue #3080: Create find_module_path() subfunction by Victor Stinner · 14 years ago
  16. 3758028 Issue #3080: Create find_module_path_list() subfunction by Victor Stinner · 14 years ago
  17. c696316 Issue #3080: Remove useless name buffer from find_module() by Victor Stinner · 14 years ago
  18. 7d8b77c Issue #3080: find_module() initialize buf and *p_fp by Victor Stinner · 14 years ago
  19. fefd70c Issue #3080: _PyImport_LoadDynamicModule() uses Unicode for name and path by Victor Stinner · 14 years ago
  20. 4d6c1c4 Issue #3080: _PyWin_FindRegisteredModule() returns the path as Unicode by Victor Stinner · 14 years ago
  21. db536af Issue #3080: Document the name attribute of the _inittab structure by Victor Stinner · 14 years ago
  22. 21fcd0c Issue #3080: Use PyUnicode_InternFromString() for builtins by Victor Stinner · 14 years ago
  23. 9587286 Issue #3080: Import builtins using Unicode strings by Victor Stinner · 14 years ago
  24. 53dc735 Issue #3080: Add PyImport_ImportFrozenModuleObject() by Victor Stinner · 14 years ago
  25. 9464d61 Issue #3080: PyImport_Cleanup() uses Unicode by Victor Stinner · 14 years ago
  26. f6b563a Issue #3080: zipimport has a full unicode suppport by Victor Stinner · 14 years ago
  27. 942003c import.c: replace tab by spaces by Victor Stinner · 14 years ago
  28. dab6780 merge from 3.2 by Senthil Kumaran · 14 years ago
  29. bec7886 Merge from 3.1 by Senthil Kumaran · 14 years ago
  30. 1b407fe Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. by Senthil Kumaran · 14 years ago
  31. fef67ee Merge #7198 doc fix. by R David Murray · 14 years ago
  32. e33e69f Merge #7198 doc fix. by R David Murray · 14 years ago
  33. 9188702 #7198: add newlines='' to csv.writer docs. by R David Murray · 14 years ago
  34. 72bd8b7 Branch merge by Brian Quinlan · 14 years ago
  35. 142fad4 Use WeakSets rather than manual pruning to prevent unbounded growth of dead thread references. by Brian Quinlan · 14 years ago
  36. d0654ef Merge NEWS entry edit. by Senthil Kumaran · 14 years ago
  37. 799c669 Add NEWS for Issue #11563. by Senthil Kumaran · 14 years ago
  38. 833d912 closes issue11609. buildbot related failures in the test_urllibnet. by Senthil Kumaran · 14 years ago
  39. a7f43cc branch merge 3.2 by Senthil Kumaran · 14 years ago
  40. acbaa92 Call unfakehttp in order to close connection while opening the connection through a fakehttp object. by Senthil Kumaran · 14 years ago
  41. 89ba56d Skip crasher tests by Antoine Pitrou · 14 years ago
  42. c9b49f8 untab by Skip Montanaro · 14 years ago
  43. b7d1aeb *sigh* - i don't like this workflow at all by Skip Montanaro · 14 years ago
  44. 482e7e0 merge from upstream by Skip Montanaro · 14 years ago
  45. 1679f4d Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 14 years ago
  46. 7b98d02 Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 14 years ago
  47. 877766d Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 14 years ago
  48. b61efd0 commit merge by Skip Montanaro · 14 years ago
  49. b40dea7 Mention RFC 4180. Based on input by Tony Wallace in issue 11456. by Skip Montanaro · 14 years ago
  50. a4d5b0c Closes issue11563 test_urllibnet is triggering a ResourceWarning. Patch by Jeff McNeil. by Senthil Kumaran · 14 years ago
  51. d24c991 Merging it again. by Senthil Kumaran · 14 years ago
  52. f95b4df merge from 3.2 by Senthil Kumaran · 14 years ago
  53. d91ffca Closes issue11563 - test_urllibnet ResourceWarning. Patch by Jeff McNeil. by Senthil Kumaran · 14 years ago
  54. 9ad63e0 Fix refleak introduced by #10812. by Ross Lagerwall · 14 years ago
  55. 952c078 Last attempt to get compiler recursion crasher to fail reliably across platforms before giving up and skipping it as unreliably platform dependent by Nick Coghlan · 14 years ago
  56. af9be06 Issue 7391: Remove questionable and outdated HOWTO document with permission from its author. by Raymond Hettinger · 14 years ago
  57. 7e4c168 Minor optimization -- factor a constant expression out of the inner-loop. by Raymond Hettinger · 14 years ago
  58. f84f3c3 Fix #11596. When bz2 isn't available, skip test_bz2_ext_fake. by briancurtin · 14 years ago
  59. 6827294 Speed-up search for hidden names by using a set instead of a tuple. by Raymond Hettinger · 14 years ago
  60. 4d076da Issue #11592: Fix compilation warnings in os module. by Ross Lagerwall · 14 years ago
  61. 8d28134 Merge NEWS fix by Antoine Pitrou · 14 years ago
  62. e147484 Oops, wrong issue number in NEWS by Antoine Pitrou · 14 years ago
  63. 6826d29 Merge by Antoine Pitrou · 14 years ago
  64. 819be34 Add news entry for a791dd7d51f3 by Antoine Pitrou · 14 years ago
  65. bb6eb85 Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a possible crash when calling Py_SetPath() by Antoine Pitrou · 14 years ago
  66. fee6684 Issue #5421: merge fix by Antoine Pitrou · 14 years ago
  67. 9befeb3 Issue #5421: merge fix by Antoine Pitrou · 14 years ago
  68. 5e98141 Issue #5421: Fix misleading error message when one of socket.sendto()'s by Antoine Pitrou · 14 years ago
  69. 8e74967 Issue #10812: Revert os.lseek change. by Ross Lagerwall · 14 years ago
  70. 7807c35 Issue #10812: Add some extra posix functions to the os module. by Ross Lagerwall · 14 years ago
  71. eb8cee8 merge by Brett Cannon · 14 years ago
  72. e9ff2ef Closes issue 10979. unittest buffering now works with class and module setup and teardown by Michael Foord · 14 years ago
  73. f40834f Move NEWS entry to correct place by Michael Foord · 14 years ago
  74. 42ec7cb Issue #10979. unittest stdout buffering now works with class and module setup and teardown. by Michael Foord · 14 years ago
  75. f694a40 Give more info in verbose mode when checking crashers, and stress the stack even more in the compiler crasher by Nick Coghlan · 14 years ago
  76. 589e8d9 Recording the merge which got missed in 3.1 by Senthil Kumaran · 14 years ago
  77. b2760a0 Recording the merge. by Senthil Kumaran · 14 years ago
  78. 9f9193e Error message in http.server code. Missed to update in 3.1 branch initially. by Senthil Kumaran · 14 years ago
  79. 1da1906 Merge from 3.2 by Senthil Kumaran · 14 years ago
  80. b253c9f Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy Zlobin. by Senthil Kumaran · 14 years ago
  81. bab07a6 Tidy up merge with remote by Nick Coghlan · 14 years ago
  82. b52c0be Merge from remote by Nick Coghlan · 14 years ago
  83. c9dacc2 Dummy merge by Nick Coghlan · 14 years ago
  84. ce4ee1f Merge from 3.2 by Nick Coghlan · 14 years ago
  85. b3c728f Close #11577: Improve binhex test coverage and fix ResourceWarning by Nick Coghlan · 14 years ago
  86. 0564958 Merge #11243 fix from 3.2. by R David Murray · 14 years ago
  87. a215023 #11243: tests and fixes for handling of 'dirty data' in additional methods by R David Murray · 14 years ago
  88. 49cb959 Add missing NEWS item for previous commit by Nick Coghlan · 14 years ago
  89. ecc2db5 Remove an overly specific exception message test. by Brett Cannon · 14 years ago
  90. c95ec3d Exercise crashers to ensure they are still covering known error cases by Nick Coghlan · 14 years ago
  91. cfec350 Merge #11401 fix from 3.2. by R David Murray · 14 years ago
  92. 4e43268 Merge #11401 fix from 3.1. by R David Murray · 14 years ago
  93. de91276 #11401: handle headers with no value. by R David Murray · 14 years ago
  94. 832ebeb Merge #11578 test from 3.2. by R David Murray · 14 years ago
  95. a88da67 #11578: add unit tests for timeit module. by R David Murray · 14 years ago
  96. 4b31818 merge 3.2 by Michael Foord · 14 years ago
  97. 07926f0 Closes issue 11503. Improves test coverage of posixpath. by Michael Foord · 14 years ago
  98. 04055f0 Merged with hg.python.org. by Reid Kleckner · 14 years ago
  99. da9ac72 Bump up the subprocess timeouts even more. :( by Reid Kleckner · 14 years ago
  100. 2b228f0 Include the timeout value in TimeoutExpired. by Reid Kleckner · 14 years ago