1. 01c4289 Fix for issue #9568. by Ronald Oussoren · 14 years ago
  2. fa41e60 Issue #9599: Tweak loghelper algorithm to return slightly improved results for powers of 2. by Mark Dickinson · 14 years ago
  3. 6d7df63 Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is by Antoine Pitrou · 14 years ago
  4. 3b69db2 issue 9910 by Kristján Valur Jónsson · 14 years ago
  5. 94622b0 Fix a typo. full->final by Brian Curtin · 14 years ago
  6. e8e4b3b #9808. Implement os.getlogin for Windows, completed by Jon Anglin. by Brian Curtin · 14 years ago
  7. 70c6044 Issue #9928: Properly initialize the types exported by the bz2 module. by Antoine Pitrou · 14 years ago
  8. 31c604d Issue 9916: Add some missing errno symbols. by Barry Warsaw · 14 years ago
  9. 3842529 Issue #9908: Fix os.stat() on bytes paths under Windows 7. by Antoine Pitrou · 14 years ago
  10. 52d4250 Issue #2643: msync() is not called anymore when deallocating an open mmap by Antoine Pitrou · 14 years ago
  11. 6c9c090 Remove unused code in posixmodule.c by Amaury Forgeot d'Arc · 14 years ago
  12. 328ec74 Issue #9854: The default read() implementation in io.RawIOBase now by Antoine Pitrou · 14 years ago
  13. 3d330ad Remove C++-style comments by Antoine Pitrou · 14 years ago
  14. 2ed94eb Do not print additional shutdown message when gc.DEBUG_SAVEALL is set by Antoine Pitrou · 14 years ago
  15. 62d52fd - Issue #9817: Add expat COPYING file; add expat, libffi and expat licenses by Matthias Klose · 14 years ago
  16. 34aa30c Fixed refcount bug. I placed Py_INCREF in create_comerror() for compatibility by Hirokazu Yamamoto · 14 years ago
  17. 5c848a8 Isse #8589: Decode PYTHONWARNINGS from utf-8 on Mac OS X by Victor Stinner · 14 years ago
  18. 5e1fdac Remove compatibility code for Python < 2.1, < 2.2 and < 2.4. by Georg Brandl · 14 years ago
  19. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  20. cb04352 Issue #9579, #9580: Fix os.confstr() for value longer than 255 bytes and encode by Victor Stinner · 14 years ago
  21. c2d76fd Issue #8589: surrogateescape error handler is not available at startup 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. 8e6b407 Issue #941346: Improve the build process under AIX and allow Python to by Antoine Pitrou · 14 years ago
  24. 66d00ad Untabify file. by Amaury Forgeot d'Arc · 14 years ago
  25. ea99c5c Issue #9410: Various optimizations to the pickle module, leading to by Antoine Pitrou · 14 years ago
  26. 4b6fdf3 #6394: Add os.getppid() support for Windows. by Amaury Forgeot d'Arc · 14 years ago
  27. 5e38aae Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True, by Antoine Pitrou · 14 years ago
  28. 616453c More docstring updates by Amaury Forgeot d'Arc · 14 years ago
  29. 972ee13 Issue #5506: BytesIO objects now have a getbuffer() method exporting a by Antoine Pitrou · 14 years ago
  30. 6285774 Implement #7566 - os.path.sameopenfile for Windows. by Brian Curtin · 14 years ago
  31. c734b31 Clean up the fix to #9324 with some of the suggestions raised on python-dev by Brian Curtin · 14 years ago
  32. 13b5529 hashlib has two new constant attributes: algorithms_guaranteed and by Gregory P. Smith · 14 years ago
  33. 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
  34. 2decf22 Fix for issue9662, patch by Łukasz Langa in issue5504. by Ronald Oussoren · 14 years ago
  35. 1f94cd0 #9776: fix some spacing. by Georg Brandl · 14 years ago
  36. a9b51d2 #9747: fix copy-paste error in getresgid() doc. by Georg Brandl · 14 years ago
  37. db6b62e Inline cmp_lt(). by Raymond Hettinger · 14 years ago
  38. 7d6e076 Issue #7451: Improve decoding performance of JSON objects, and reduce by Antoine Pitrou · 14 years ago
  39. 1afb39a Fix typos in error messages (thanks Arfrever). by Antoine Pitrou · 14 years ago
  40. d3ccde8 Issue #7736: Release the GIL around calls to opendir() and closedir() by Antoine Pitrou · 14 years ago
  41. c934f32 Welcome to the UTF-8 world. by Florent Xicluna · 14 years ago
  42. 1670b43 Fix invalid bytes for UTF-8 by Éric Araujo · 14 years ago
  43. 24e561a Issue #3805: clean up implementation of the _read method in _ssl.c. by Antoine Pitrou · 14 years ago
  44. 6c76528 Fix Issue9753: socket.dup() does not always work right on Windows by Daniel Stutzbach · 14 years ago
  45. d5c3f6c BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS. by Antoine Pitrou · 14 years ago
  46. 67e8e56 Try to fix some buildbot failures on test_ssl by Antoine Pitrou · 14 years ago
  47. 1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to by Antoine Pitrou · 14 years ago
  48. e0f9863 Issue #9693 - msg 115273: attempt to fix ssl module failures on certain OpenSSL versions by calling ERR_clear_error() before raising IOError by Giampaolo Rodolà · 14 years ago
  49. 6b3d72c Fix line wrapping by Raymond Hettinger · 14 years ago
  50. a606faa Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers other than MSC by Daniel Stutzbach · 14 years ago
  51. 745ab38 Fix issue issue9706: provides a better error handling for various SSL operations by Giampaolo Rodolà · 14 years ago
  52. 67c7ce4 Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private by Antoine Pitrou · 14 years ago
  53. 1a9a9d5 Issue #1868: Eliminate subtle timing issues in thread-local objects by by Antoine Pitrou · 14 years ago
  54. c8fdd10 Add file needed to make distclean. by Martin v. Löwis · 14 years ago
  55. ccbd427 Issue #9704: Add zlib files necessary to run configure and make. by Martin v. Löwis · 14 years ago
  56. 112c0f3 Issue #1027206: getnameinfo is now restricted to numeric addresses as input. by Martin v. Löwis · 14 years ago
  57. 8515eae Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use memcpy to convert between the two (as already done when wchar_t is unsigned) by Daniel Stutzbach · 14 years ago
  58. d8e5f2d tabbing no longer applicable by Benjamin Peterson · 14 years ago
  59. 2525dc8 Under OS X, history_get from readline returns a const char *, but the local by Brett Cannon · 14 years ago
  60. fc0275a Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and by Martin v. Löwis · 14 years ago
  61. b46b9d5 Issue #9617: Signals received during a low-level write operation aren't by Antoine Pitrou · 14 years ago
  62. 9802b39 PYTHONFSENCODING is not available on Windows or Mac OS X by Victor Stinner · 14 years ago
  63. 5ea823c Decode NIS data to fs encoding, using the surrogate error handler. by Martin v. Löwis · 14 years ago
  64. 4ea04a3 #7647: add ST_RDONLY, ST_NOSUID constants to os module. by Andrew M. Kuchling · 14 years ago
  65. 398356b Improve error message if the command is not decodable by Victor Stinner · 14 years ago
  66. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 14 years ago
  67. b85e165 Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch by by Antoine Pitrou · 14 years ago
  68. dfaf9ec Restore GIL in nis_cat in case of error. by Martin v. Löwis · 14 years ago
  69. 19467d2 Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t". by Antoine Pitrou · 14 years ago
  70. 554f334 Fix <deque iterator>.__length_hint__() under 64-bit Windows. by Antoine Pitrou · 14 years ago
  71. ccfb91c fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments. by Giampaolo Rodolà · 14 years ago
  72. d26c18a Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory by Nick Coghlan · 14 years ago
  73. 028dd97 Issue #9425: zipimporter_repr() uses unicode by Victor Stinner · 14 years ago
  74. 60fe8d9 Issue #9425: get_data() uses an unicode path by Victor Stinner · 14 years ago
  75. 844807e r82659 reintroduced some tab characters. Untabify again. by Amaury Forgeot d'Arc · 14 years ago
  76. 977a684 Issue #8983: Corrected docstrings. by Alexander Belopolsky · 14 years ago
  77. e29e6bf Issue #665761: functools.reduce() will no longer mask exceptions other by Alexander Belopolsky · 14 years ago
  78. 2460a43 Issue #9425: read_directory() is fully unicode compliant by Victor Stinner · 14 years ago
  79. 4045575 Fix more 64-bit warnings. by Antoine Pitrou · 14 years ago
  80. 22e4155 Fix other warnings under 64-bit Windows. by Antoine Pitrou · 14 years ago
  81. e039ffe Issue #9605: posix.getlogin() decodes the username with file filesystem by Victor Stinner · 14 years ago
  82. 61ec5dc Issue #9604: posix.initgroups() encodes the username using the fileystem by Victor Stinner · 14 years ago
  83. 5fe6de8 Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name by Victor Stinner · 14 years ago
  84. 64d010c Removing the comment lines for the modules which were made to build statically. by Senthil Kumaran · 14 years ago
  85. 2b8dab7 Issue #9425: zipimporter_init() is fully unicode compliant by Victor Stinner · 14 years ago
  86. 99773ac Fix indentation in Modules/getpath.c by Antoine Pitrou · 14 years ago
  87. eba57b6 Add comments about Windows in Modules/getpath.c by Antoine Pitrou · 14 years ago
  88. e406ef4 Kill a gcc warning introduced by r83988 by Victor Stinner · 14 years ago
  89. f2e08b3 Create _Py_wchar2char() function, reverse of _Py_char2wchar() by Victor Stinner · 14 years ago
  90. e9b428f Reimplement addbuilddir() in C inside getpath.c, so as to execute it by Antoine Pitrou · 14 years ago
  91. d4efbf9 use pep 383 decoding for mknod and mkfifo #9570 by Benjamin Peterson · 14 years ago
  92. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  93. 32cfede Issue #9550: a BufferedReader could issue an additional read when the by Antoine Pitrou · 14 years ago
  94. b73caab Issue #6915: Under Windows, os.listdir() didn't release the Global by Antoine Pitrou · 14 years ago
  95. 5af4f4b Issue #3757: thread-local objects now support cyclic garbage collection. by Antoine Pitrou · 14 years ago
  96. 6e451df Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() by Antoine Pitrou · 14 years ago
  97. 5c87c1a Fix Issue9545 - Adding _collections to static build. by Senthil Kumaran · 14 years ago
  98. e43f9d0 Issue #8524: Add a forget() method to socket objects, so as to put the by Antoine Pitrou · 14 years ago
  99. 696e035 Issue #477863: Print a warning at shutdown if gc.garbage is not empty. by Antoine Pitrou · 14 years ago
  100. bf4cc5d Fix issue6869: refcount problem in the _ctypes extension. by Thomas Heller · 14 years ago