1. 5397e86 #1050268: make parseaddr 'quote' the contents of quoted strings in addresses. by R. David Murray · 14 years ago
  2. 8f7bcb3 Make the printing of sqlite version in verbose mode work with regrtest -w. by R. David Murray · 14 years ago
  3. aef57e3 Update changelog for r85174 by Victor Stinner · 14 years ago
  4. 46c7b3b Issue #8670: Rename testcapi unicode test methods by Victor Stinner · 14 years ago
  5. ea3f305 Oops, revert unwanted _testcapi changes of r85174 by Victor Stinner · 14 years ago
  6. 749261e Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_t by Victor Stinner · 14 years ago
  7. 5593d8a Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace by Victor Stinner · 14 years ago
  8. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  9. 5a2da3b Use proper variable name 'data' instead of 'str' in the send method. by Senthil Kumaran · 14 years ago
  10. 7cafd26 Fix - issue10010 .. index:: position in the docs. by Senthil Kumaran · 14 years ago
  11. aec5fd1 type.__abstractmethods__ should raise an AttributeError #10006 by Benjamin Peterson · 14 years ago
  12. ea8676b Lower the tone of the warning about SSL certificate validation. by Amaury Forgeot d'Arc · 14 years ago
  13. 70a9993 Fix docstring typo. by R. David Murray · 14 years ago
  14. 31e984c #10004: in Q encoded word ignore '=xx' when xx is not valid hex. by R. David Murray · 14 years ago
  15. 9e88b5a Fix #10003. Add SIGBREAK to the set of valid signals on Windows. by Brian Curtin · 14 years ago
  16. 38e2996 Issue #6608: time.asctime is now checking struct tm fields its input by Alexander Belopolsky · 14 years ago
  17. 0b0ebb4 Cosmetic fix for PCBuild/readme.txt. by Hirokazu Yamamoto · 14 years ago
  18. d0ffa4c Fix weird markup that caused latex to fail. by Georg Brandl · 14 years ago
  19. d2c310f Fix a couple spelling errors in comments and delete redundant __len__ def. by R. David Murray · 14 years ago
  20. 0f476d4 Issue1491 - BaseHTTPServer incorrectly implements response code 100 by Senthil Kumaran · 14 years ago
  21. 748cace Remove an unreferenced variable. len is no longer needed. by Brian Curtin · 14 years ago
  22. c603717 Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's small enough to be converted to a float without overflow, log(n) is now computed as log(float(n)), and similarly for log10. by Mark Dickinson · 14 years ago
  23. 0c0714f Add testcases from bug report #9980. by Mark Dickinson · 14 years ago
  24. 71e91a3 Fix PyUnicode_AsWideCharString(): set *size if size is not NULL by Victor Stinner · 14 years ago
  25. 15d597a test_imp: getfilesystemencoding() cannot be None anymore by Victor Stinner · 14 years ago
  26. 16004ac Use os.fsencode() to support surrogates by Victor Stinner · 14 years ago
  27. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  28. a5785b1 Fix NNTP when there's a ".netrc" file by Antoine Pitrou · 14 years ago
  29. 2620d81 Disable the usenetrc option when testing nntplib by Antoine Pitrou · 14 years ago
  30. 69ab951 Issue #9360: Cleanup and improvements to the nntplib module. The API by Antoine Pitrou · 14 years ago
  31. 926f0da Fix #9978. WINFUNCTYPE is from ctypes, not from ctypes.wintypes. by Brian Curtin · 14 years ago
  32. 79ecd76 Issue #9983: warn that urllib and httplib don't perform SSL certificate validation. by Antoine Pitrou · 14 years ago
  33. c3ed2e7 Issue #9962: GzipFile now has the peek() method. by Antoine Pitrou · 14 years ago
  34. 4c2e4fa Issue #9979: Use PyUnicode_AsWideCharString() in _ctypes module by Victor Stinner · 14 years ago
  35. b290478 Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime() by Victor Stinner · 14 years ago
  36. 449057f Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll() by Victor Stinner · 14 years ago
  37. 255dfdb Issue #9979: Use PyUnicode_AsWideCharString() in import.c by Victor Stinner · 14 years ago
  38. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  39. 41a64a5 linecache.updatecache(): don't the lines into the cache on IOError by Victor Stinner · 14 years ago
  40. 78f43a7 linecache.updatecache() returns an empty list on error by Victor Stinner · 14 years ago
  41. d68d4e8 Have test_sqlite print version info when run in verbose mode. by R. David Murray · 14 years ago
  42. 11cabcf #7110: have regrtest print test failures and tracebacks to stderr not stdout. by R. David Murray · 14 years ago
  43. c663b58 Give a dedicated page to memoryview objects, so that they can be part by Antoine Pitrou · 14 years ago
  44. f7ba2fa Buffers are not sequence objects (!). Put them in the abstract objects layers by Antoine Pitrou · 14 years ago
  45. 99a00a4 Various improvements to the docs of the buffer API by Antoine Pitrou · 14 years ago
  46. b78b489 #9628: fix runtests.sh -x option so more than one test can be excluded. by R. David Murray · 14 years ago
  47. c8f0196 Fix compilation under Windows by Antoine Pitrou · 14 years ago
  48. a0b6873 Discourage use of the old buffer API funcs by Antoine Pitrou · 14 years ago
  49. 3e1fd27 Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN, by Antoine Pitrou · 14 years ago
  50. cc868d4 Issue #3612: Added new types to ctypes.wintypes. (CHAR and pointers) by Hirokazu Yamamoto · 14 years ago
  51. 7405c20 Updated PC/VC6 openssl build script. (for openssl-1.0.0a) by Hirokazu Yamamoto · 14 years ago
  52. 313dab4 Now perl path with spaces can be used. by Hirokazu Yamamoto · 14 years ago
  53. 57b4163 Reverted to r70917. by Hirokazu Yamamoto · 14 years ago
  54. 826903e Issue #9970: improve C API documentation for memoryview objects by Antoine Pitrou · 14 years ago
  55. 01c4289 Fix for issue #9568. by Ronald Oussoren · 14 years ago
  56. 9af7380 Add support for the ZSH shell to the "Update Shell Profile" script on MacOSX. by Ronald Oussoren · 14 years ago
  57. a0b551a Changed order to see other test results. (Also temporary commit) by Hirokazu Yamamoto · 14 years ago
  58. b0a71a0 Run test_ttk_guionly in verbose mode. (This commit is temporary) by Hirokazu Yamamoto · 14 years ago
  59. fa41e60 Issue #9599: Tweak loghelper algorithm to return slightly improved results for powers of 2. by Mark Dickinson · 14 years ago
  60. d057cd6 Updated VS8.0 bz2.vcproj with PCBuild/vs9to8.py. by Hirokazu Yamamoto · 14 years ago
  61. 5305a99 Since __import__ is not designed for general use, have its docstring point by Brett Cannon · 14 years ago
  62. 1771b54 Implement #8521. Added named argument handling to winreg's CreateKeyEx, by Brian Curtin · 14 years ago
  63. 6d7df63 Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is by Antoine Pitrou · 14 years ago
  64. 0ae3361 Issue 9941: Minor code cleanup before implementing the context manager feature: by Alexander Belopolsky · 14 years ago
  65. 76ca3b4 logging: Updated library configuration documentation. by Vinay Sajip · 14 years ago
  66. 3b69db2 issue 9910 by Kristján Valur Jónsson · 14 years ago
  67. 42ef4b1 Fix Issue1595365 - Adding the req.headers after the un-redirect headers have by Senthil Kumaran · 14 years ago
  68. cb15988 Issue #8445: try to fix some buildbot failures on test_ttk_guionly. by Antoine Pitrou · 14 years ago
  69. 4fbe4b3 logging: NullHandler optimisation. by Vinay Sajip · 14 years ago
  70. a305ca7 Fix typo. by Antoine Pitrou · 14 years ago
  71. 9fdd11b Issue #9947: logging: Fixed locking bug in stopListening. by Vinay Sajip · 14 years ago
  72. 32fb6a8 Issue #9945: logging: Fixed locking bugs in addHandler/removeHandler. by Vinay Sajip · 14 years ago
  73. fda2106 #9562: slight clarification. by Georg Brandl · 14 years ago
  74. a0fc3d3 #9944: fix typo. by Georg Brandl · 14 years ago
  75. aa7fbd9 revert r85003, poorly considered; breaks tests by Benjamin Peterson · 14 years ago
  76. 81437c9 don't count keyword arguments as positional #9943 by Benjamin Peterson · 14 years ago
  77. a847c81 This should fix buildbot failure introduced by r84994 by Alexander Belopolsky · 14 years ago
  78. 82df53e Fix a line that got hacked up by r82659. by Brian Curtin · 14 years ago
  79. a4024e2 Make _kill_process more robust under Windows too (see issue #8432) by Antoine Pitrou · 14 years ago
  80. ff09ce2 Issue #9936: Fixed executable lines' search in the trace module. by Alexander Belopolsky · 14 years ago
  81. 5e83da3 Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows) by Hirokazu Yamamoto · 14 years ago
  82. e8e8042 Fix #9790 again. Rather than handle NotImplementedError at runtime as by Brian Curtin · 14 years ago
  83. 0151b8e LoginTests fails on a number of buildbots with different errors. Skip by Brian Curtin · 14 years ago
  84. 94622b0 Fix a typo. full->final by Brian Curtin · 14 years ago
  85. 0dac808 Fix #9790: Rework the imports necessary for ntpath.samefile and by Brian Curtin · 14 years ago
  86. 972412d Updated SysLogHandler documentation. by Vinay Sajip · 14 years ago
  87. 605c293 Further tarfile / test_tarfile cleanup by Antoine Pitrou · 14 years ago
  88. b09a3d6 Issue #9930: Remove an unnecessary type check in wrap_binaryfunc_r; by Mark Dickinson · 14 years ago
  89. e8e4b3b #9808. Implement os.getlogin for Windows, completed by Jon Anglin. by Brian Curtin · 14 years ago
  90. 70c6044 Issue #9928: Properly initialize the types exported by the bz2 module. by Antoine Pitrou · 14 years ago
  91. ab58b5f Try harder to fix test_tarfile under Windows buildbots by Antoine Pitrou · 14 years ago
  92. 95f5560 Try to fix test_tarfile issues on Windows buildbots by closing file by Antoine Pitrou · 14 years ago
  93. e5768cf Small fixes in the gzip docs by Antoine Pitrou · 14 years ago
  94. 7b96984 Issue #1675951: Allow GzipFile to work with unseekable file objects. by Antoine Pitrou · 14 years ago
  95. dda7fdf Skip estLoadWithUNC when UNC is not available. by Hirokazu Yamamoto · 14 years ago
  96. b3b390d Issue #9868: locale was left changed after TestEnUSCollation#setUp raised by Hirokazu Yamamoto · 14 years ago
  97. 5a7a52f #9582 - add a missing "are" and reflow the line. by Brian Curtin · 14 years ago
  98. 5577892 logging: Improved documentation re. blocking handlers. by Vinay Sajip · 14 years ago
  99. 0637d49 logging: added QueueListener and documentation. by Vinay Sajip · 14 years ago
  100. d12a420 Fix encoding for test case added in r84967. by Florent Xicluna · 14 years ago