1. aee4756 Relax test condition (fix failures on FreeBSD buildbots) by Antoine Pitrou · 14 years ago
  2. 2e55fec Make testDefaults in test.test_socket.BasicSocketPairTest more reliable. by Antoine Pitrou · 14 years ago
  3. 328ec74 Issue #9854: The default read() implementation in io.RawIOBase now by Antoine Pitrou · 14 years ago
  4. 9e0b864 Issue #1552: socket.socketpair() now returns regular socket.socket by Antoine Pitrou · 14 years ago
  5. a468adc Issue #9853: Fix the signature of SSLSocket.recvfrom() and by Antoine Pitrou · 14 years ago
  6. 2ed94eb Do not print additional shutdown message when gc.DEBUG_SAVEALL is set by Antoine Pitrou · 14 years ago
  7. 8552d1f Added test for QueueHandler. by Vinay Sajip · 14 years ago
  8. e1b6a9a Added files missed in r84780. Thanks, Florent. by Alexander Belopolsky · 14 years ago
  9. 98a5f3f Issue 9840: Add reprlib.recursive_repr(), a decorator for handling recursive calls to __repr__ methods. by Raymond Hettinger · 14 years ago
  10. 9f0cbf1 Issue #9213: Add index and count methods to range objects, needed to by Daniel Stutzbach · 14 years ago
  11. e4d6317 Issue 7994: Make object.__format__() raise a PendingDeprecationWarning by Eric Smith · 14 years ago
  12. d8642c3 Removed debugging setting by Alexander Belopolsky · 14 years ago
  13. 4d77017 Issue #9315: Fix for the trace module to record correct class name by Alexander Belopolsky · 14 years ago
  14. dc69e72 Make test.regrtest.__file__ absolute, this was not always the case when running profile or trace, for example. (issue #9323) by Florent Xicluna · 14 years ago
  15. a87b383 Reenable test_ucs4 and remove some duplicated lines. by Florent Xicluna · 14 years ago
  16. 6464d5f Issue #9837: The read() method of ZipExtFile objects (as returned by by Antoine Pitrou · 14 years ago
  17. 0b9489d reenable test_nis on solaris #3402 by Benjamin Peterson · 14 years ago
  18. 4c7db31 Issue #9738, #9836: Fix refleak introduced by r84704 by Victor Stinner · 14 years ago
  19. dc08a14 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  20. ca6525a Issue #9819: don't try to encode TESTFN_UNICODE on Windows by Victor Stinner · 14 years ago
  21. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  22. b4ba986 Issue #9402: pyexpat uses Py_DECREF() instead of PyObject_DEL() by Victor Stinner · 14 years ago
  23. 3d75d0c Issue #8603: Environ.data is now protected -> Environ._data by Victor Stinner · 14 years ago
  24. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  25. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  26. fe7b405 The "if 1": trick seems cleaner that the one with regular expressions. by Amaury Forgeot d'Arc · 14 years ago
  27. dfa9b29 Use the "if 1:" prefix so that quoted code appears nicely by Amaury Forgeot d'Arc · 14 years ago
  28. 8ce7df6 Issue #9819: fix TESTFN_UNENCODABLE for japanese code page by Victor Stinner · 14 years ago
  29. 460ff3d Skip socket tests that require the network, if the network resource is not enabled by Daniel Stutzbach · 14 years ago
  30. 4c7c421 Remove workaround by Antoine Pitrou · 14 years ago
  31. e4a1892 Issue #9804: ascii() now always represents unicode surrogate pairs as by Antoine Pitrou · 14 years ago
  32. ea99c5c Issue #9410: Various optimizations to the pickle module, leading to by Antoine Pitrou · 14 years ago
  33. 350c722 Use transient_internet() where appropriate in test_ssl by Antoine Pitrou · 14 years ago
  34. 6e6cc83 Issue #9757: memoryview objects get a release() method to release the by Antoine Pitrou · 14 years ago
  35. bad3c88 Have pprint() respect the order in an OrderedDict. by Raymond Hettinger · 14 years ago
  36. 44d7b6a Add docstring to cmd.Cmd.do_help() by Raymond Hettinger · 14 years ago
  37. b383dbb Fix issue 9794: adds context manager protocol to socket.socket so that socket.create_connection() can be used with the 'with' statement. by Giampaolo Rodolà · 14 years ago
  38. 7c9cf01 gdb: fix representation of non-printable surrogate pairs, and workaround by Antoine Pitrou · 14 years ago
  39. 783eea7 Issue #9707: Rewritten reference implementation of threading.local which by Antoine Pitrou · 14 years ago
  40. 2673c5b Also catch some gaierrors by Antoine Pitrou · 14 years ago
  41. 4b6fdf3 #6394: Add os.getppid() support for Windows. by Amaury Forgeot d'Arc · 14 years ago
  42. 8bc0903 Improve transient_internet() again to detect more network errors, by Antoine Pitrou · 14 years ago
  43. 4b92b5f Issue #9792: In case of connection failure, socket.create_connection() by Antoine Pitrou · 14 years ago
  44. a88c83c Issue #8574: better implementation of test.support.transient_internet(). by Antoine Pitrou · 14 years ago
  45. 5e38aae Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True, by Antoine Pitrou · 14 years ago
  46. 7f7561e Remove invalid test (it was supposed to fail on 64-bit machines.). by Raymond Hettinger · 14 years ago
  47. c585eec Fix test that depends on a particular implementation of random.choice(). by Raymond Hettinger · 14 years ago
  48. dc4872e Fix corner case for Random.choice() and add tests. by Raymond Hettinger · 14 years ago
  49. 0515661 Issues #7889, #9025 and #9379: Improvements to the random module. by Raymond Hettinger · 14 years ago
  50. f763a72 Document which part of the random module module are guaranteed. by Raymond Hettinger · 14 years ago
  51. f45abc9 Add method to OrderedDict for repositioning keys to the ends. by Raymond Hettinger · 14 years ago
  52. 13a0db5 Fix some errors that #7566 introduced on non-Windows platforms due to by Brian Curtin · 14 years ago
  53. 972ee13 Issue #5506: BytesIO objects now have a getbuffer() method exporting a by Antoine Pitrou · 14 years ago
  54. 6285774 Implement #7566 - os.path.sameopenfile for Windows. by Brian Curtin · 14 years ago
  55. c734b31 Clean up the fix to #9324 with some of the suggestions raised on python-dev by Brian Curtin · 14 years ago
  56. 13b5529 hashlib has two new constant attributes: algorithms_guaranteed and by Gregory P. Smith · 14 years ago
  57. 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
  58. 1138eba Fix accidental suppression in r84537 by Éric Araujo · 14 years ago
  59. 23eae86 Make naming consistent by Éric Araujo · 14 years ago
  60. 02566ec Adopt more descriptive attribute names as suggested on python-dev. by Raymond Hettinger · 14 years ago
  61. 0049249 Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file by Antoine Pitrou · 14 years ago
  62. d9107aa Issue #9777: test_idna requires the "network" resource by Antoine Pitrou · 14 years ago
  63. 3941a8f Issue #1100562: Fix deep-copying of objects derived from the list and dict types. by Antoine Pitrou · 14 years ago
  64. e5a9101 Issue #9581: Fix non-working PosixGroupsTester test case by Antoine Pitrou · 14 years ago
  65. cc645b9 add consistent support for the vars and default arguments on all by Fred Drake · 14 years ago
  66. edf5f0d Strengthen BytesWarning tests. by Florent Xicluna · 14 years ago
  67. 06a3c8a fromfd exists on Windows now by Daniel Stutzbach · 14 years ago
  68. faf7b7f Issue 8420: Fix obscure set crashers. by Raymond Hettinger · 14 years ago
  69. 8844441 fix output from RawConfigParser.write and ConfigParser.write for None by Fred Drake · 14 years ago
  70. 045b3ba Issue #9212: Added the missing isdisjoint method to the dict_keys and by Daniel Stutzbach · 14 years ago
  71. e0793ba Issue #9737: Fix a crash when trying to delete a slice or an item from by Antoine Pitrou · 14 years ago
  72. 1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to by Antoine Pitrou · 14 years ago
  73. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  74. 8b7da62 Fix issue #9711: raise ValueError is SSLConnection constructor is invoked with keyfile and not certfile. by Giampaolo Rodolà · 14 years ago
  75. 33856de handle names starting with non-ascii characters correctly #9712 by Benjamin Peterson · 14 years ago
  76. e992a7d remove pointless coding cookie by Benjamin Peterson · 14 years ago
  77. 4a656eb dedent some lines in test_ssl so that they are actually executed by Giampaolo Rodolà · 14 years ago
  78. cd9dfb9 in ssl tests rely on IOError.errno rather thanf IOError.strerror for better compatibility across platforms. by Giampaolo Rodolà · 14 years ago
  79. 745ab38 Fix issue issue9706: provides a better error handling for various SSL operations by Giampaolo Rodolà · 14 years ago
  80. 1a9a9d5 Issue #1868: Eliminate subtle timing issues in thread-local objects by by Antoine Pitrou · 14 years ago
  81. 64a38c0 Issue #1512791: In setframerate method of Wave_write, round non-integral by Mark Dickinson · 14 years ago
  82. 0e10206 basicsize and itemsize are Py_ssize_t #9688 by Benjamin Peterson · 14 years ago
  83. ef6ff66 Fix test_sys: set LC_ALL instead of LANG by Victor Stinner · 14 years ago
  84. 112c0f3 Issue #1027206: getnameinfo is now restricted to numeric addresses as input. by Martin v. Löwis · 14 years ago
  85. 1970b62 Disable test_undecodable_code() of test_sys on Windows by Victor Stinner · 14 years ago
  86. ebe53a2 Fix test_sys for FreeBSD, Solaris and Mac OS X by Victor Stinner · 14 years ago
  87. 31da5b2 Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operations, namely x -= x and x ^= x by Daniel Stutzbach · 14 years ago
  88. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  89. bbc4782 fix issue 9601: ftplib now provides a workaround for invalid response code returned on MKD and PWD by non-compliant FTPserver implementations such as ISS shipped with Windows server 2003 by Giampaolo Rodolà · 14 years ago
  90. 076e031 cleanup imports by Benjamin Peterson · 14 years ago
  91. 9c2930e run total_ordering() tests, and fix the function (default comparisons shouldn't be considered) by Benjamin Peterson · 14 years ago
  92. 67e91ad Explicitly pass socket type and family for getaddrinfo, by Martin v. Löwis · 14 years ago
  93. 0723d2c Add an import lock test for multithreaded circular imports. (part of #9657) by Antoine Pitrou · 14 years ago
  94. 56773cf Mention that gethostbyaddr now also supports IDNA. by Martin v. Löwis · 14 years ago
  95. fc0275a Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and by Martin v. Löwis · 14 years ago
  96. 7224d07 Test that calls to path hooks and meta_path entries are serialized by the import lock. by Antoine Pitrou · 14 years ago
  97. 9117c75 Issue #9214: Fix set operations on KeysView and ItemsView. by Raymond Hettinger · 14 years ago
  98. b46b9d5 Issue #9617: Signals received during a low-level write operation aren't by Antoine Pitrou · 14 years ago
  99. c44abb1 Workaround issue #8611 in test_undecodable_code() of test_sys by Victor Stinner · 14 years ago
  100. 1b6372a test_undecodable_code(): set locale to C by Victor Stinner · 14 years ago