1. 6da3ed6 initialize more global type objects (closes #16369) by Benjamin Peterson · 13 years ago
  2. 5c89c19 #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 13 years ago
  3. 45dba1d Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 13 years ago
  4. 9971616 Fixes Issue #12268 for the io module - File readline, readlines and by Gregory P. Smith · 13 years ago
  5. e884be6 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 13 years ago
  6. d41dc7c 2.7 : Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 13 years ago
  7. 8112ea2 Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() by Christian Heimes · 13 years ago
  8. ba372a5 #15796: Fix \n in readline docstring. by Ezio Melotti · 13 years ago
  9. 8e03b4c #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 13 years ago
  10. 20f0ea1 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 13 years ago
  11. 3fb774e Closes #15910: MD5 and SHA1 crash when "updated" with strings bigger than 2**32 bytes by Jesus Cea · 13 years ago
  12. 03a9d2a Closes #15908: SHA1 crashes in 64 bits when the string to hash is bigger than 2**32 bytes by Jesus Cea · 13 years ago
  13. 8fa3be2 - Mention _heapq in Setup.dist. by doko@ubuntu.com · 13 years ago
  14. 8b54d6d Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 13 years ago
  15. c5eec0e Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO by Antoine Pitrou · 13 years ago
  16. da4277a Issue #15765: Fix quirky NetBSD getcwd() behaviour. by Trent Nelson · 13 years ago
  17. a00b100 Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler by Ronald Oussoren · 13 years ago
  18. 2de4be2 Add workaround for log1p(-0.0) on platforms where it's broken. by Mark Dickinson · 13 years ago
  19. c5bef75 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 13 years ago
  20. c551776 Modules/socketmodule.c: netdb_lock: define static. by Matthias Klose · 13 years ago
  21. 2d639d5 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 13 years ago
  22. 76370f4 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 13 years ago
  23. 4fa7a5f #15512: Declarations reorganization by Jesus Cea · 13 years ago
  24. d4e58dc Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 13 years ago
  25. 3e3192d Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 13 years ago
  26. 1fa9f7b Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 13 years ago
  27. baee34c Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 13 years ago
  28. bff5df0 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  29. 6812346 Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 13 years ago
  30. 87c5b94 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 13 years ago
  31. 25be3f6 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 13 years ago
  32. c2ec992 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 13 years ago
  33. 3b30b19 Fix closes issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 13 years ago
  34. e0afb72 Closes #14591: Random.jumpahead could produce an invalid MT state on 64-bit machines. by Mark Dickinson · 13 years ago
  35. d9a5137 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 13 years ago
  36. d958cc9 Issue #15219: Fix a reference leak when hashlib.new() is called with by Amaury Forgeot d'Arc · 13 years ago
  37. 65dd745 Remove useless test (flowinfo is unsigned). by Charles-François Natali · 13 years ago
  38. 9bd4bf2 #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 13 years ago
  39. 926f58d Issue #10133: Make multiprocessing deallocate buffer if socket read fails. by Richard Oudkerk · 13 years ago
  40. ff0e22b Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. by Antoine Pitrou · 13 years ago
  41. fe7aa49 Issue #9041: raised exception is misleading by Meador Inge · 13 years ago
  42. 877effc #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 13 years ago
  43. cd8799f Issue #14888: Fix misbehaviour of the _md5 module when called on data larger than 2**32 bytes. by Antoine Pitrou · 13 years ago
  44. 77e77a1 Issue #14572: Prevent build failures with pre-3.5.0 versions of by Ned Deily · 13 years ago
  45. 38fbd79 Issue #14829: Fix bisect issues under 64-bit Windows. by Antoine Pitrou · 13 years ago
  46. acdc56d Issue #14662: Prevent shutil failures on OS X when destination does not by Ned Deily · 13 years ago
  47. 9a16fa6 Fix for issue 14725 for 2.7 branch by Richard Oudkerk · 13 years ago
  48. a68bdc7 Improve docstring by Raymond Hettinger · 13 years ago
  49. 9267810 Remove accidentally-committed debugging code. by Mark Dickinson · 13 years ago
  50. 0407e96 Issue 13496: Fix bisect.bisect overflow bug for large collections. by Mark Dickinson · 13 years ago
  51. f235989 protect this call, too by Benjamin Peterson · 13 years ago
  52. f73813a prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 13 years ago
  53. 4b536d4 Issue #14437: Fix building the _io module under Cygwin. by Antoine Pitrou · 13 years ago
  54. c10f5c2 Fixes Issue 14234: fix for the previous commit, keep compilation when by Gregory P. Smith · 13 years ago
  55. c8ff460 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 13 years ago
  56. 7f4b3be Fix typo “seperator” by Éric Araujo · 13 years ago
  57. 66e565e merge with 2.6 by Georg Brandl · 13 years ago
  58. 3aec568 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  59. 6647113 merge 2.6 by Benjamin Peterson · 13 years ago
  60. 4e171d1 don't need this hack anymore by Benjamin Peterson · 13 years ago
  61. 776af40 Fix crash at startup with -W options. by Antoine Pitrou · 13 years ago
  62. cc3fa88 Fix crash at startup with -W options. by Antoine Pitrou · 13 years ago
  63. 8757cad Backport fix from default branch for ./python -R -Wd where hash('d') would not by Barry Warsaw · 13 years ago
  64. 4ab701b sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  65. 9be6c3d kill interned strings computed before random initialization by Benjamin Peterson · 13 years ago
  66. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
  67. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
  68. dd7e071 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  69. c39cd78 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  70. c7fd523 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 14 years ago
  71. e0e88b0 Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 14 years ago
  72. 0518f47 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 14 years ago
  73. 88c51e8 Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. by Antoine Pitrou · 14 years ago
  74. 374b4ea Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 14 years ago
  75. d358e05 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 14 years ago
  76. d7664de Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. by Nadeem Vawda · 14 years ago
  77. 2ab4a91 Berkeley DB: Erratic behaviour of "DBEnv->rep_elect()" because a typo by Jesus Cea · 14 years ago
  78. dee76e6 Issue #13774: json: Fix a SystemError when a bogus encoding is passed to by Amaury Forgeot d'Arc · 14 years ago
  79. 3aa59e3 Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 14 years ago
  80. b275e2d Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 14 years ago
  81. f537702 Issue #13573: The csv.writer now uses the repr() for floats rather than str(). by Raymond Hettinger · 14 years ago
  82. b918bdc Fix docstring typo. by Florent Xicluna · 14 years ago
  83. 9f915d9 Issue #13093: Fix _testcapi.unicode_encodedecimal() by Victor Stinner · 14 years ago
  84. 93a1175 Issue #13415: Test in configure if unsetenv() has a return value or not. by Charles-François Natali · 14 years ago
  85. 42d96dc no python objects to manage here by Benjamin Peterson · 14 years ago
  86. fde8216 plug refleak by Benjamin Peterson · 14 years ago
  87. aa1c967 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 14 years ago
  88. 53853c3 Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 14 years ago
  89. 975134e Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 14 years ago
  90. 5aa7df3 Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 14 years ago
  91. 0965ee2 Issue #2892: preserve iterparse events in case of SyntaxError by Florent Xicluna · 14 years ago
  92. 67d5d0e Closes #7334: close source files on ElementTree.parse and iterparse (partial backport of issue #10093 from 3.2). by Florent Xicluna · 14 years ago
  93. 5a77fe9 Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode by Antoine Pitrou · 14 years ago
  94. d583068 Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 14 years ago
  95. a7b0976 PyEval_CallObject requires a tuple of args (closes #13186) by Benjamin Peterson · 14 years ago
  96. 3624815 Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 14 years ago
  97. 4618075 Merge. by Charles-François Natali · 14 years ago
  98. 1f3ff7b Issue #13156: revert changeset f6feed6ec3f9, which was only relevant for native by Charles-François Natali · 14 years ago
  99. 9ffcbf7 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 14 years ago
  100. 44b3b54 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 14 years ago