1. cba1497 Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  2. 6ff262e Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  3. 19e568d Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  4. c2c4cb6 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  5. c8ac03d Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  6. 12489d9 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  7. d4b645e Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  8. 6893732 Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  9. 3aee222 Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  10. 8d07c26 Raise our own SubprocessError rather than a RuntimeError in when dealing with by Gregory P. Smith · 12 years ago
  11. 82fdade Rename a local variable for readability and change a "this can't by Gregory P. Smith · 12 years ago
  12. 1f83866 Rename a local variable for readability and change a "this can't by Gregory P. Smith · 12 years ago
  13. f44c9da Rename a local variable for readability and change a "this can't by Gregory P. Smith · 12 years ago
  14. 099717b Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  15. 561cbc4 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  16. 3d8e776 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  17. dd0edae Fixes issue #14396: Handle the odd rare case of waitpid returning 0 by Gregory P. Smith · 12 years ago
  18. a450c5e null merge by Gregory P. Smith · 12 years ago
  19. 6f62b58 move note to the right section by Gregory P. Smith · 12 years ago
  20. f328d79 Fixes issue #14396: Handle the odd rare case of waitpid returning 0 by Gregory P. Smith · 12 years ago
  21. 2ec8233 Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when by Gregory P. Smith · 12 years ago
  22. 0b83224 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  23. 34b1495 Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  24. 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  25. 9c40022 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  26. ec6dfcf Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  27. 7ee9555 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  28. 9ea64e3 Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  29. dd1253a Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  30. ee7889d Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  31. 5fb7308 Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  32. 73e9bd4 Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  33. 5c89b4e Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  34. 601c059 Fix test_urllib broken by my previous commits. The assumptions it was by Gregory P. Smith · 12 years ago
  35. 6d9388f Fix test_urllib broken by my previous commits. The assumptions it was by Gregory P. Smith · 12 years ago
  36. b8f09d3 Merge 3.3. by Stefan Krah · 12 years ago
  37. 6e46704 Accept Unicode legacy strings in the Decimal constructor. by Stefan Krah · 12 years ago
  38. b696610 Fixes issue #16409: The reporthook callback made by the legacy by Gregory P. Smith · 12 years ago
  39. 6b0bdab Fixes issue #16409: The reporthook callback made by the legacy by Gregory P. Smith · 12 years ago
  40. e2c574f Issue #16444: disable undecodable characters in test_non_ascii() test until by Victor Stinner · 12 years ago
  41. c8a6967 Issue #14794: slice.indices no longer returns OverflowError for out-of-range start, stop, step or length. by Mark Dickinson · 12 years ago
  42. ff3d515 Issue #16444, #16218: Use TESTFN_UNDECODABLE on UNIX by Victor Stinner · 12 years ago
  43. ef3971d Merge from 3.3: adjust set and frozenset function docs (issue #16436). by Chris Jerdonek · 12 years ago
  44. 296c2fd Merge from 3.2: adjust set and frozenset function docs (issue #16436). by Chris Jerdonek · 12 years ago
  45. df3abec Link set and frozenset function docs to their class definitions (issue #16436). by Chris Jerdonek · 12 years ago
  46. 86b3053 Merge from 3.3: improve FAQ link in documentation (for issue #16435). by Chris Jerdonek · 12 years ago
  47. fe08756 Merge from 3.2: improve FAQ link in documentation (for issue #16435). by Chris Jerdonek · 12 years ago
  48. 4ed4b1c Improve FAQ link in documentation (for issue #16435). by Chris Jerdonek · 12 years ago
  49. 90378b4 #13301: merge with 3.3. by Ezio Melotti · 12 years ago
  50. 956c6c2 #13301: merge with 3.2. by Ezio Melotti · 12 years ago
  51. 9bf379e #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  52. dc945e4 #16440: merge with 3.3. by Ezio Melotti · 12 years ago
  53. a3ad8a0 #16440: merge with 3.2. by Ezio Melotti · 12 years ago
  54. 8b6b176 #16440: fix exception type and clarify example. by Ezio Melotti · 12 years ago
  55. fba5dc1 Merge issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  56. 7cac2d8 Merge issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  57. 5c90436 Issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  58. 73b56c8 Merge issue #16435: Link in tutorial now points to python3 FAQ. by Andrew Svetlov · 12 years ago
  59. b5570e9 Merge issue #16435: Link in tutorial now points to python3 FAQ. by Andrew Svetlov · 12 years ago
  60. 0e9a065 Issue #16435: Link in tutorial now points to python3 FAQ. by Andrew Svetlov · 12 years ago
  61. 4cb103e Merge 3.3. by Stefan Krah · 12 years ago
  62. 0f82b76 Issue #16431: Finally, consider all permutations. by Stefan Krah · 12 years ago
  63. dee9043 #16433: merge with 3.3. by Ezio Melotti · 12 years ago
  64. 9cfa1ff #16433: merge with 3.2. by Ezio Melotti · 12 years ago
  65. 90eea97 #16433: fix docstring of assertNotEqual. by Ezio Melotti · 12 years ago
  66. 770a5bc #11481: merge with 3.3. by Ezio Melotti · 12 years ago
  67. b77dc4e #11481: merge with 3.2. by Ezio Melotti · 12 years ago
  68. 78b18d4 #11481: update copyreg docs and add example. by Ezio Melotti · 12 years ago
  69. 44dbd07 Merge heads. by Ezio Melotti · 12 years ago
  70. f62f3a4 #10385: merge with 3.3. by Ezio Melotti · 12 years ago
  71. 60e22b9 #10385: merge with 3.2. by Ezio Melotti · 12 years ago
  72. 402f75d #10385: use the mod role in subprocess docs. by Ezio Melotti · 12 years ago
  73. d2d3aa2 Merge 3.3. by Stefan Krah · 12 years ago
  74. ed16eff Issue #16431: Also fix the opposite direction. by Stefan Krah · 12 years ago
  75. fc55bb1 Merge 3.3. by Stefan Krah · 12 years ago
  76. f4abc7b Issue #16431: Use the type information when constructing a Decimal subtype by Stefan Krah · 12 years ago
  77. 15c02e3 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  78. 33363f4 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  79. 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  80. 99dd8b5 Remove outdated comment by Victor Stinner · 12 years ago
  81. fc009ef Close #16311: Use the _PyUnicodeWriter API in text decoders by Victor Stinner · 12 years ago
  82. 64e039a Issue #16414: Fix test_os on Windows, don't test os.listdir() with undecodable by Victor Stinner · 12 years ago
  83. 8198f5d Merge. by Stefan Krah · 12 years ago
  84. cd81709 Merge. by Stefan Krah · 12 years ago
  85. ab8b6bd Issue #16414: Test more characters for support.FS_NONASCII by Victor Stinner · 12 years ago
  86. 90a9d51 Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space) by Victor Stinner · 12 years ago
  87. e84226a Null merge. by Stefan Krah · 12 years ago
  88. 8f049e5 Issue #16414: Fix support.TESTFN_UNDECODABLE and test_genericpath.test_nonascii_abspath() by Victor Stinner · 12 years ago
  89. c3fb3c3 Backport fc8f1b1c76bf. by Stefan Krah · 12 years ago
  90. 8b219b2 Issue #16414: Add support.FS_NONASCII and support.TESTFN_NONASCII by Victor Stinner · 12 years ago
  91. df1d940 Reversed changes from issue9584 by Tim Golden · 12 years ago
  92. 9b3fb0c Backed out changeset dafca4714298 by Tim Golden · 12 years ago
  93. 3df8887 Backed out changeset 5cf6c427fd39 by Tim Golden · 12 years ago
  94. 7fd4b68 Correct mis-indented whitespace by Tim Golden · 12 years ago
  95. 8f323d9 issue9584: Add {} list expansion to glob. Original patch by Mathieu Bridon by Tim Golden · 12 years ago
  96. 10ffea8 Merge typo fix. by Ezio Melotti · 12 years ago
  97. 99bafff Fix typo noticed by Tom Lynn. by Ezio Melotti · 12 years ago
  98. d9d1d08 Merge #6717 crasher from 3.3 by Nick Coghlan · 12 years ago
  99. 1de70b5 Merge #6717 crasher from 3.2 by Nick Coghlan · 12 years ago
  100. 692b023 Record a known crasher from #6717 by Nick Coghlan · 12 years ago