1. b1ebba5 enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476) by Benjamin Peterson · 10 years ago
  2. 34c8d98 Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SSL layer but the underlying connection hasn't been closed. by Antoine Pitrou · 10 years ago
  3. c620c11 Issue #23504: Added an __all__ to the types module. by Serhiy Storchaka · 10 years ago
  4. b027c6c fix possible overflow bugs in unicodedata (closes #23367) by Benjamin Peterson · 10 years ago
  5. e0a0bd6 Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is now by Victor Stinner · 10 years ago
  6. cc49aa1 Issue #6639: Module-level turtle functions no longer raise TclError after by Serhiy Storchaka · 10 years ago
  7. b8285d9 Issue #22113: struct.pack_into() now supports new buffer protocol (in by Serhiy Storchaka · 10 years ago
  8. 4809d1f Issues #814253, #9179: Warnings now are raised when group references and by Serhiy Storchaka · 10 years ago
  9. 021d55f Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 10 years ago
  10. 3173f7c Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 10 years ago
  11. dc9d41d Issue #21548: Fix pydoc.synopsis() and pydoc.apropos() on modules with empty by Berker Peksag · 10 years ago
  12. a0dd7dc remove rc4 from the default client ciphers (closes #23481) by Benjamin Peterson · 10 years ago
  13. c769040 Issue #22885: Fixed arbitrary code execution vulnerability in the dumbdbm by Serhiy Storchaka · 10 years ago
  14. 7fe04f1 Issue #21849: Fixed xmlrpclib serialization of non-ASCII unicode strings in by Serhiy Storchaka · 11 years ago
  15. 2bd8b22 Issue #21840: Fixed expanding unicode variables of form $var in by Serhiy Storchaka · 11 years ago
  16. 4068b01 Issue #23392: Added tests for marshal C API that works with FILE*. by Serhiy Storchaka · 11 years ago
  17. ca7ecf3 Issue #23212: Update OS X installer build OpenSSL to 1.0.1l. by Ned Deily · 11 years ago
  18. d44bcc9 Issue #18982: Add tests for CLI of the calendar module. by Serhiy Storchaka · 11 years ago
  19. fa11978 Issue #23345: Prevent test_ssl failures with large OpenSSL patch level by Ned Deily · 11 years ago
  20. dda9121 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 11 years ago
  21. 17845c1 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 11 years ago
  22. 021dec1 detect overflow in combinations (closes #23366) by Benjamin Peterson · 11 years ago
  23. 9797bc3 Completed Misc/NEWS entry. by Serhiy Storchaka · 11 years ago
  24. 4c54387 Issue #22079: PyType_Ready() now checks that statically allocated type has by Serhiy Storchaka · 11 years ago
  25. 0d8fe3b Issue #19949: The test_xpickle test now tests compatibility with installed by Serhiy Storchaka · 11 years ago
  26. 0e0282e Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 11 years ago
  27. 3ce465a Issue #23191: fnmatch functions that use caching are now threadsafe. by Serhiy Storchaka · 11 years ago
  28. c328d11 Issue #14099: Backout changeset c2c4cde55f6f (except adapted tests). by Serhiy Storchaka · 11 years ago
  29. 73c0863 Issue #18518: timeit now rejects statements which can't be compiled outside by Serhiy Storchaka · 11 years ago
  30. 0013207 Issue #11578: Backported test for the timeit module. by Serhiy Storchaka · 11 years ago
  31. bfd976f simply ignore headers with no name (#19996) by Benjamin Peterson · 11 years ago
  32. b10bfbe pep 466 backport of alpn (#20188) by Benjamin Peterson · 11 years ago
  33. c3edc19 Issue #23248: Update ssl error codes from latest OpenSSL git master. by Antoine Pitrou · 11 years ago
  34. 2098d61 Issue #23098: 64-bit dev_t is now supported in the os module. by Serhiy Storchaka · 11 years ago
  35. b5daa3d Issue #23180: Rename IDLE "Windows" menu item to "Window". Patch by Al Sweigart. by Ned Deily · 11 years ago
  36. 95ee9c7 fix parsing reST with code or code-block directives (closes #23063) by Benjamin Peterson · 11 years ago
  37. 7a3082f Issue #23212: 2.7-specific OS X installer updates by Ned Deily · 11 years ago
  38. 7c90667 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 11 years ago
  39. 7b4b284 allow a SSLContext to be given to ftplib.FTP_TLS by Benjamin Peterson · 11 years ago
  40. 9fe67ce make SSLv23 the default version in ftplib (closes #23111) by Benjamin Peterson · 11 years ago
  41. 27c269a use getentropy when available (backport of 75ede5bec8db) (closes #23115) by Benjamin Peterson · 11 years ago
  42. a71cfc5 fix behavior of trailing slash redirection when a query string is involved (closes #23112) by Benjamin Peterson · 11 years ago
  43. 53ae614 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 11 years ago
  44. 74a651b Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter. by Serhiy Storchaka · 11 years ago
  45. 16e093d Issue #20577: move configuration of FormatParagraph extension to new extension by Terry Jan Reedy · 11 years ago
  46. 64e8f6e use autoconf macro to check for pkg-config (closes #15506) by Benjamin Peterson · 11 years ago
  47. 7a6a973 pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 11 years ago
  48. 0be4b1e Issue #23032: Fix installer build failures on OS X 10.4 Tiger by Ned Deily · 11 years ago
  49. f0f09b9 Issue #23006: Improve the documentation and indexing of dict.__missing__. by Terry Jan Reedy · 11 years ago
  50. e6b4243 Issue #23016: A warning no longer produces an AttributeError when sys.stderr by Serhiy Storchaka · 11 years ago
  51. e57af0f merge 2.7.9 release branch by Benjamin Peterson · 11 years ago
  52. a5f49f5 bump to 2.7.9 final by Benjamin Peterson · 11 years ago
  53. 92b2b48 Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer. by Ned Deily · 11 years ago
  54. 62a8660 Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer. by Ned Deily · 11 years ago
  55. 204a0ec merge 2.7.9 release branch by Benjamin Peterson · 11 years ago
  56. 227f6e0 remove HTTPSConnection's check_hostname parameter (#22959) by Benjamin Peterson · 11 years ago
  57. daa491b merge 2.7.9 release branch by Benjamin Peterson · 11 years ago
  58. 60766c4 allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) by Benjamin Peterson · 11 years ago
  59. bedaefc Issue #16893: Update Idle doc chapter to match current Idle and add new by Terry Jan Reedy · 11 years ago
  60. af18b4c merge 2.7.9 release branch by Benjamin Peterson · 11 years ago
  61. 9e8f523 add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 11 years ago
  62. dabfc56 smtplib: limit amount read from the network (closes #16042) by Benjamin Peterson · 11 years ago
  63. faad6bb in poplib, limit maximum line length that we read from the network (closes #16041) by Benjamin Peterson · 11 years ago
  64. 45aa771 Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects by Serhiy Storchaka · 11 years ago
  65. 53ab758 Add NEWS items for Idle patches already in 2.7.9rc1. by Terry Jan Reedy · 11 years ago
  66. d862db0 Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails. by Serhiy Storchaka · 11 years ago
  67. 169f195 Issue #22943: bsddb tests are locale independend now. by Serhiy Storchaka · 11 years ago
  68. d535517 merge 2.7.9 release branch by Benjamin Peterson · 11 years ago
  69. f8c8d2e backout fac649bf2d10 (#9179) for further consideration by Benjamin Peterson · 11 years ago
  70. 5a608c2 merge 2.7.9 release branch by Benjamin Peterson · 11 years ago
  71. efa3cf8 add context parameter to xmlrpclib.ServerProxy (#22960) by Benjamin Peterson · 11 years ago
  72. 46e9250 Issue #22314: pydoc now works when the LINES environment variable is set. by Serhiy Storchaka · 11 years ago
  73. 86ef95d Issue #18905: "pydoc -p 0" now outputs actually used port. Based on patch by by Serhiy Storchaka · 11 years ago
  74. 2c1f376 Issue #21514: The documentation of the json module now refers to new JSON RFC by Serhiy Storchaka · 11 years ago
  75. 20994f1 Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 11 years ago
  76. 016487b add 2.7.10 news section by Benjamin Peterson · 11 years ago
  77. af358ef 2.7.9rc1 by Benjamin Peterson · 11 years ago
  78. e3e7d40 pep 476: verify certificates by default (#22417) by Benjamin Peterson · 11 years ago
  79. b206473 give urllib.urlopen a context parameter (closes #22927) by Benjamin Peterson · 11 years ago
  80. 7982834 add NEWS note for #22921 by Benjamin Peterson · 11 years ago
  81. fcfb18e allow passing cert/ssl information to urllib2.urlopen and httplib.HTTPSConnection by Benjamin Peterson · 11 years ago
  82. fc419fb Add regression issue number to Misc/NEWS entry. by Antoine Pitrou · 11 years ago
  83. b9a4501 Issue #21963: backout issue #1856 patch (avoid crashes and lockups when by Antoine Pitrou · 11 years ago
  84. 3f1d0b3 Issue 22878: PEP 477 - "make install" and "make altinstall" integration by Ned Deily · 11 years ago
  85. 3010182 Issue #22877: PEP 477 - OS X installer for 2.7.9 now installs pip. by Ned Deily · 11 years ago
  86. e927757 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 11 years ago
  87. 069bdcb Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian by Serhiy Storchaka · 11 years ago
  88. 15ea870 Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 11 years ago
  89. 4535b11 Issue #17293: uuid.getnode() now determines MAC address on AIX using netstat. by Serhiy Storchaka · 11 years ago
  90. 7a02582 Issue #22769: Fixed ttk.Treeview.tag_has() when called without arguments. by Serhiy Storchaka · 11 years ago
  91. 93c4133 allow keyfile argument to be None (closes #22787) by Benjamin Peterson · 11 years ago
  92. 186c5f0 Issue #22775: Fixed unpickling of Cookie.SimpleCookie with protocol 2. by Serhiy Storchaka · 11 years ago
  93. 21a2350 Issue #17896: Move Windows external lib sources from .. to externals. by Zachary Ware · 11 years ago
  94. 33db23f Issue #22770: Prevent some Tk segfaults on OS X when running gui tests. by Ned Deily · 11 years ago
  95. 247b644 Issue #17717: Pull NASM from svn.python.org for OpenSSL build. by Zachary Ware · 11 years ago
  96. a79d6f4 Brought excluded code into the scope of a try block in SysLogHandler.emit(). by Vinay Sajip · 11 years ago
  97. e9e54ae Issue #17381: Fixed ranges handling in case-insensitive regular expressions. by Serhiy Storchaka · 11 years ago
  98. c04fcd4 Backported the optimization of compiling charsets in regular expressions by Serhiy Storchaka · 11 years ago
  99. d4c7290 Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 11 years ago
  100. 78be2f4 Issue #8876: distutils now falls back to copying files when hard linking doesn't work. by Antoine Pitrou · 11 years ago