1. 25095b2 Remove useless assignments by Victor Stinner · 14 years ago
  2. 58bc7a1 Null merge: changeset is already in 3.3 by Stefan Krah · 14 years ago
  3. f2c6db5 Issue #12090: backport 79fcd71d0356 by Stefan Krah · 14 years ago
  4. b57f108 Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available. by Victor Stinner · 14 years ago
  5. e9d44ccb Issue #12175: FileIO.readall() now only reads the file position and size once. by Victor Stinner · 14 years ago
  6. 5eb5559 Issue #12180: Fixed a few remaining errors in test_packaging when no threading. by Tarek Ziade · 14 years ago
  7. d2780ae (Merge 3.2) Issue #12175: RawIOBase.readall() now returns None if read() by Victor Stinner · 14 years ago
  8. 988512c (Merge 3.1) Issue #12175: RawIOBase.readall() now returns None if read() by Victor Stinner · 14 years ago
  9. a80987f Issue #12175: RawIOBase.readall() now returns None if read() returns None. by Victor Stinner · 14 years ago
  10. af62c7d (Merge 3.2) Issue #12175: FileIO.readall() now raises a ValueError instead of by Victor Stinner · 14 years ago
  11. 4767114 (Merge 3.1) Issue #12175: FileIO.readall() now raises a ValueError instead of by Victor Stinner · 14 years ago
  12. b79f28c Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if by Victor Stinner · 14 years ago
  13. fd82113 Fast path for IncrementalNewlineDecoder.decode() in io.TextIOWrapper.read(-1) by Victor Stinner · 14 years ago
  14. 242926d merge commit. by Senthil Kumaran · 14 years ago
  15. 656ce50 News entry for issue11109. by Senthil Kumaran · 14 years ago
  16. 5e826e8 Fix closes issue #11109 - socketserver.ForkingMixIn leaves zombies, also fails to reap all zombies in one pass. by Senthil Kumaran · 14 years ago
  17. b46004c Issue #12045: Avoid duplicate execution of command in ctypes.util._get_soname(). by Antoine Pitrou · 14 years ago
  18. dac9ace test that object has a __dir__() implementation by Benjamin Peterson · 14 years ago
  19. 04778a8 make PyImport_ImportModuleLevel's first arg const like similiar functions (closes #12173) by Benjamin Peterson · 14 years ago
  20. 8a02100 wrap at 80 chars by Benjamin Peterson · 14 years ago
  21. 81b21d7 test values and types of (True/False).(imag/real) by Benjamin Peterson · 14 years ago
  22. c58140c Issue #12049: cleanup the warning in the random module doc by Victor Stinner · 14 years ago
  23. a675206 Issue #12049: Document errors cases of ssl.RAND_bytes() and by Victor Stinner · 14 years ago
  24. 2e2baa9 Issue #12049: test_ssl now checks also that RAND_bytes() raises an error if by Victor Stinner · 14 years ago
  25. c13ef66 Issue #8407: Fix the signal handler of the signal module: if it is called by Victor Stinner · 14 years ago
  26. b45c708 excellent place for assertRaises by Benjamin Peterson · 14 years ago
  27. be62103 Issue #8533: regrtest replaces also sys.stdout on Windows by Victor Stinner · 14 years ago
  28. 6daa33c Issue #10818: Remove deprecated pydoc.serve() function by Victor Stinner · 14 years ago
  29. 383c3fc Issue #10818: Remove the Tk GUI of the pydoc module (pydoc -g has been by Victor Stinner · 14 years ago
  30. c520a18 (Merge 3.2) Issue #12057: Add cjkencodings directory to the Makefile and by Victor Stinner · 14 years ago
  31. 5b32659 (Merge 3.1) Issue #12057: Add cjkencodings directory to the Makefile and by Victor Stinner · 14 years ago
  32. 46f8264 Issue #12057: Add cjkencodings directory to the Makefile and Tools/msi/msi.py by Victor Stinner · 14 years ago
  33. f1a1af2 Fix typo in bz2 module. by Nadeem Vawda · 14 years ago
  34. 62666e1 (Merge 3.2) Issue #12057: Add tests for the HZ encoding by Victor Stinner · 14 years ago
  35. 8ed8416 (Merge 3.1) Issue #12057: Add tests for the HZ encoding by Victor Stinner · 14 years ago
  36. 8fdfc20 Issue #12057: Add tests for the HZ encoding by Victor Stinner · 14 years ago
  37. 1f4560c Issue #1441530: In imaplib, read the data in one chunk to speed up large by Charles-François Natali · 14 years ago
  38. 17dc819 (Merge 3.2) Issue #12070: Fix the Makefile parser of the sysconfig module to by Victor Stinner · 14 years ago
  39. 1273b7c Issue #12070: Fix the Makefile parser of the sysconfig module to handle by Victor Stinner · 14 years ago
  40. eb734f7 (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs at by Victor Stinner · 14 years ago
  41. d48ba0b (Merge 3.1) Issue #12100: Don't reset incremental encoders of CJK codecs at by Victor Stinner · 14 years ago
  42. 6bcbef7 Issue #12100: Don't reset incremental encoders of CJK codecs at each call to by Victor Stinner · 14 years ago
  43. 19fb53c Issue #12049: improve RAND_bytes() and RAND_pseudo_bytes() documentation by Victor Stinner · 14 years ago
  44. abf22b4 merge 3.2 by Benjamin Peterson · 14 years ago
  45. e6a0621 merge 3.1 by Benjamin Peterson · 14 years ago
  46. f847393 backout 8b384de4e780, so a proper fix can be considered (#5715) by Benjamin Peterson · 14 years ago
  47. c728412 indicate return value on __dir__ methods by Benjamin Peterson · 14 years ago
  48. 1fdcf0e merge 3.2 by Benjamin Peterson · 14 years ago
  49. 17658a1 merge 3.1 by Benjamin Peterson · 14 years ago
  50. fbe56bb use '->' to indicate return values by Benjamin Peterson · 14 years ago
  51. 9b325b0 merge 3.2 by Benjamin Peterson · 14 years ago
  52. 48e21fc merge 3.1 by Benjamin Peterson · 14 years ago
  53. a7cdb0f generally, sockets should be closed after they're used by Benjamin Peterson · 14 years ago
  54. 247b52b Issue #5715: In socketserver, close the server socket in the child process. by Charles-François Natali · 14 years ago
  55. cf05759 Issue #5715: In socketserver, close the server socket in the child process. by Charles-François Natali · 14 years ago
  56. 7b54e75 Issue #5715: In socketserver, close the server socket in the child process. by Charles-François Natali · 14 years ago
  57. 82b00c1 move specialized dir implementations into __dir__ methods (closes #12166) by Benjamin Peterson · 14 years ago
  58. 9bcfacd Issue #12167: packaging.tests.test_dist unloads the temporary module by Victor Stinner · 14 years ago
  59. 79d1b1c Issue #12167: packaging.tests.support, LoggingCatcher restores correctly the by Victor Stinner · 14 years ago
  60. 99c8b16 Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl by Victor Stinner · 14 years ago
  61. b7b1930 Updated test_rollover delay to just over a second. by Vinay Sajip · 14 years ago
  62. e36f375 Issue #12105: test_posix skips test_oscloexec() on Linux < 2.6.23 by Victor Stinner · 14 years ago
  63. fea0f4d Issue #12158: Move linux_version() from test_socket to test.support by Victor Stinner · 14 years ago
  64. 25000d4 Issue #11377: platform.popen() emits a DeprecationWarning by Victor Stinner · 14 years ago
  65. a910072 Merge heads. by Ezio Melotti · 14 years ago
  66. 64af7c0 #12074: merge with 3.2. by Ezio Melotti · 14 years ago
  67. 3ef1229 Issue #12151: Test now ignores datagram socket errors after server is closed. by Vinay Sajip · 14 years ago
  68. 84f75c6 #12074: remove the /0 when there are no failures. by Ezio Melotti · 14 years ago
  69. 17ec7cd merge 3.2 by Benjamin Peterson · 14 years ago
  70. bfcdcf9 merge heads by Benjamin Peterson · 14 years ago
  71. 200fe3d merge heads by Benjamin Peterson · 14 years ago
  72. 5cc10b0 merge 3.2 by Benjamin Peterson · 14 years ago
  73. f5fcd33 merge 3.1 by Benjamin Peterson · 14 years ago
  74. 08c719e (Merge 3.2) Issue #12074: regrtest displays also the current number of failures by Victor Stinner · 14 years ago
  75. a2a895c Issue #12074: regrtest displays also the current number of failures by Victor Stinner · 14 years ago
  76. 7963a35 correctly lookup __dir__ by Benjamin Peterson · 14 years ago
  77. acd902b Issue #12151: Correction to diagnostic code. by Vinay Sajip · 14 years ago
  78. ba980db Issue #12151: Added diagnostics to help diagnose intermittent socket errors. by Vinay Sajip · 14 years ago
  79. 1dc5407 Clean-up example. by Raymond Hettinger · 14 years ago
  80. 4b244ef Clean-up example. by Raymond Hettinger · 14 years ago
  81. e1177d9 Issue #12125: fixed the failures under Solaris due to improper test cleanup. by Tarek Ziade · 14 years ago
  82. fabc308 fixed the cwd cleanup in packaging test_util by Tarek Ziade · 14 years ago
  83. eb64b61 make sure the cwd is restored on tearDown by Tarek Ziade · 14 years ago
  84. 7870bdf Issue #6501: os.device_encoding() returns None on Windows if the application by Victor Stinner · 14 years ago
  85. a1ae533 make sure build_dir.build_lib is synced to the faked build location by Tarek Ziade · 14 years ago
  86. d688170 Merge 3.2 by Victor Stinner · 14 years ago
  87. b43dd4b Merge 3.1 by Victor Stinner · 14 years ago
  88. 2cca057 test_codecs now removes the temporay file (created by the test) by Victor Stinner · 14 years ago
  89. cc6491a Issue #12105: test_posix, add the value of O_CLOEXEC in the error message by Victor Stinner · 14 years ago
  90. 9b49304 Close #12153: faulthandler, mark stack_overflow() as static by Victor Stinner · 14 years ago
  91. a454ef6 Update documentation to mention bytes instead byte string and correct one by Gregory P. Smith · 14 years ago
  92. 6352298 Refer to the return value on nameindex and friends as a string, not a byte by Gregory P. Smith · 14 years ago
  93. abe38da merged by Martin v. Löwis · 14 years ago
  94. ad23420 Add 3.2.1rc2 uuid. by Martin v. Löwis · 14 years ago
  95. 949c890 Issue #12151: test_logging writes debug messages to stderr, not stdout by Victor Stinner · 14 years ago
  96. e5f9cbd skip more tests in packaging if threading is not supported by Tarek Ziade · 14 years ago
  97. a3c1545 not using a server name anymore as the 127.0.0.1 <> localhost symmetry is not true under Windows 7 by Tarek Ziade · 14 years ago
  98. 3c8d12d Issue #10801: Remove a debug print() from test_zipfile by Victor Stinner · 14 years ago
  99. 3517369 Issue 12132 - skip the test_buil_ext test if the xx module is not found by Tarek Ziade · 14 years ago
  100. 2bc55e4 Issue 10126 - backported distutils fix for the enable-share mode into packaging by Tarek Ziade · 14 years ago