1. a845a81 remove unused osx10.5 sdk check by Benjamin Peterson · 9 years ago
  2. cce02f8 Remove Lib/test/test_pep247.py by Zachary Ware · 9 years ago
  3. 68f4dd8 Doc updates for PEPs 520 and 468. by Eric Snow · 9 years ago
  4. 6982a4f Merge by Brett Cannon · 9 years ago
  5. 6760c69 Mention how requiring ordered dicts breaks backwards-compatibility. by Brett Cannon · 9 years ago
  6. d04e417 tests: use subTest in test_unparse.test_files by Yury Selivanov · 9 years ago
  7. feea6e7 Mention that the order-preserving aspect of the new dict by Brett Cannon · 9 years ago
  8. b78d52f Remove Lib/_sysconfigdata.py from .gitignore by Zachary Ware · 9 years ago
  9. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 9 years ago
  10. 93b2dee compile with -std=c99 instead of -std=gnu99; use kiddie-gloves with bluetooth/bluetooh.h (#28017) by Benjamin Peterson · 9 years ago
  11. 52a7e37 Add a few big-ticket items to What's new in 3.6. by Guido van Rossum · 9 years ago
  12. 6cff874 Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal. by Guido van Rossum · 9 years ago
  13. 95e502e Move news items for PEP 526 and 525 to the top of their section. by Guido van Rossum · 9 years ago
  14. 7bcf793 Issue #26513: Fixes platform module detection of Windows Server by Steve Dower · 9 years ago
  15. 41519b2 Issue #26513: Fixes platform module detection of Windows Server by Steve Dower · 9 years ago
  16. f333fd8 Switch to using |version| substitition in Windows docs. by Steve Dower · 9 years ago
  17. f7e9dfb credit Raymond by Benjamin Peterson · 9 years ago
  18. 6d5cf8a Fixes expected error when getting encoding while shutting down. by Steve Dower · 9 years ago
  19. 4db86bc Changes pyvenv.cfg trick into an actual sys.path file. by Steve Dower · 9 years ago
  20. 783c9ef Merge 3.5 by Donald Stufft · 9 years ago
  21. 6bde454 Merge 3.4 by Donald Stufft · 9 years ago
  22. f530738 Remove duplicate entry for Ivan L. by Guido van Rossum · 9 years ago
  23. 16d7d59 Upgrade setuptools to 27.1.2 by Donald Stufft · 9 years ago
  24. deed5a1 Issue #28038: Remove Tools/parser/com2ann.py and its unit test. by Guido van Rossum · 9 years ago
  25. 6230aaf Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENAT by Steve Dower · 9 years ago
  26. 18591e4 Revert #27959: ImportError within an encoding module should also skip the encoding by Steve Dower · 9 years ago
  27. 722b685 Merge 3.5 by Donald Stufft · 9 years ago
  28. 621333d Merge 3.4 by Donald Stufft · 9 years ago
  29. d25d9dc Upgrade setuptools to 27.1.1 by Donald Stufft · 9 years ago
  30. e13370b Issue #27364: Raw strings to avoid deprecated escaping in com2ann.py by Martin Panter · 9 years ago
  31. 87672d7 Issue #28003: Fix a compiler warning by Yury Selivanov · 9 years ago
  32. 2b9b70b Issue #27106: Add test for configparser.__all__ by Martin Panter · 9 years ago
  33. 50c584f ceval: tighten the code of STORE_ANNOTATION by Yury Selivanov · 9 years ago
  34. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 9 years ago
  35. b96ef55 regrtest: log FS and locale encodings by Victor Stinner · 9 years ago
  36. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 9 years ago
  37. 09ad178 #27364: Credit Emanuel Barry in NEWS item. by R David Murray · 9 years ago
  38. f03bcfd Merge: #27630: Be consistent in how _XXX/_encoded_XXX vars are initialized. by R David Murray · 9 years ago
  39. eaab1ca #27630: Be consistent in how _XXX/_encoded_XXX vars are initialized. by R David Murray · 9 years ago
  40. 71c01d4 Issue #28033: Fix typo in dictobject.c by Berker Peksag · 9 years ago
  41. ba7224f issue28032: never imply --with-lto as part of --with-optimizations. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  42. 32ca5cd merge 3.5 by Benjamin Peterson · 9 years ago
  43. 14c7f71 issue28032: never imply --with-lto as part of --with-optimizations. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  44. 0b9d64e Issue 18550: Check return value of ioctl() / fnctl() in internal_setblocking by Christian Heimes · 9 years ago
  45. a78b627 Fix potential NULL pointer dereference in _imp_create_builtin by Christian Heimes · 9 years ago
  46. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 9 years ago
  47. 7f730cf 24277: Make it clearer that the new modules are not provisional. by R David Murray · 9 years ago
  48. ff4fddd Add NULL checks to the initializer of the locale module by Christian Heimes · 9 years ago
  49. 45af0c8 Fix potential NULL pointer dereference in update_symbols() by Christian Heimes · 9 years ago
  50. bb0b0d9 replace PyInt16 with int16_t by Benjamin Peterson · 9 years ago
  51. 07a2a1b Additional safe-guard against dereferencing NULL in reduce_newobj by Christian Heimes · 9 years ago
  52. 884332b Add NULL check for gen->gi_code in gen_send_ex() by Christian Heimes · 9 years ago
  53. 7a5457b Add error checking to PyInit_pyexpact by Christian Heimes · 9 years ago
  54. 6782b14 Use PyModule_AddIntMacro() in signal module by Christian Heimes · 9 years ago
  55. c6cc23d Skip unused value in tokenizer code by Christian Heimes · 9 years ago
  56. 2752707 Check return value of PyList_Append() in Py_Main(). CID 1353200 by Christian Heimes · 9 years ago
  57. 301edfa Add policy keyword to email.generator.DecodedGenerator. by R David Murray · 9 years ago
  58. 4c483ad Merge by Raymond Hettinger · 9 years ago
  59. 262b679 Issue #26020: Fix evaluation order for set literals by Raymond Hettinger · 9 years ago
  60. 33df0c3 More lenient skipping of console tests. by Steve Dower · 9 years ago
  61. f09e2fa Skips console open_fd tests when we don't have real consoles. by Steve Dower · 9 years ago
  62. 10427f4 [merge from 3.5] - Issue28010 - Make http.client.HTTPConnection.putrequest by Senthil Kumaran · 9 years ago
  63. 5dc504c Issue28010 - Make http.client.HTTPConnection.putrequest documentation consistent with the code. by Senthil Kumaran · 9 years ago
  64. 37156a7 Issue #21201: Improves readability of multiprocessing error message from server to client for certain exceptions by Davin Potts · 9 years ago
  65. 014d52f document --with-optimizations in the README for issue26359. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  66. 2b2a9be9 Issue #27445: Don't pass str(_charset) to MIMEText.set_payload() by Berker Peksag · 9 years ago
  67. 82733fa Issue11551 - Increase the test coverage of _dummy_thread module to 100%. by Senthil Kumaran · 9 years ago
  68. bfac23a Move my news entries to the build section. by Gregory P. Smith · 9 years ago
  69. 9719161 Fix indentation (reindent.py). by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  70. dd1c638 lib2to3.pgen3.driver.load_grammar() now creates a stable cache file by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  71. d61910c Fixes #27930: improved QueueListener behaviour. by Vinay Sajip · 9 years ago
  72. 0f0eac4 Issue #27993: Fix problems with plural objects in docs and comments by Martin Panter · 9 years ago
  73. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 9 years ago
  74. be8da9c Issue #27570: Avoid zero-length memcpy() calls with null source pointers by Martin Panter · 9 years ago
  75. 799520c Fixes issue# 27983: Cause lack of llvm-profdata tool when using clang - by Gregory P. Smith · 9 years ago
  76. dc1650c #22233: Only split headers on \r and/or \n, per email RFCs. by R David Murray · 9 years ago
  77. 6b46ec7 #26209: Clarify type of *localaddr*/*remoteadr* in smtpd docs. by R David Murray · 9 years ago
  78. c2e2473 27988: Make sure iter_attachments does not mutate the payload list. by R David Murray · 9 years ago
  79. 48c8830 capture stderr to silence output during test_coroutines (closes #27968) by Benjamin Peterson · 9 years ago
  80. b88db87 supress coroutine warning when an exception is pending (#27968) by Benjamin Peterson · 9 years ago
  81. 32d3742 [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder". by Senthil Kumaran · 9 years ago
  82. e848cd7 Issue #27905: Docs for typing.Type[C], by Michael Lee. by Guido van Rossum · 9 years ago
  83. 33d2a49 promote some shifts to unsigned, so as not to invoke undefined behavior by Benjamin Peterson · 9 years ago
  84. 4a75760 do not memcpy from NULL by Benjamin Peterson · 9 years ago
  85. a1bc246 Use shorter version of Connection.isolation_level in sqlite3.rst by Berker Peksag · 9 years ago
  86. 5a7d923 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 9 years ago
  87. 8c94f97 Issue #26359: Add the --with-optimizations flag. by Brett Cannon · 9 years ago
  88. 653c850 Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  89. 4bf580d Issue #21250: Add tests for SQLite's ON CONFLICT clause by Berker Peksag · 9 years ago
  90. 01c340d do not leak addrinfo in configure test by Benjamin Peterson · 9 years ago
  91. 1c03abd Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs. by Christian Heimes · 9 years ago
  92. 03d13c0 Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. by Christian Heimes · 9 years ago
  93. cbef66d suppress stderr output when checking gdb (closes #27969) by Benjamin Peterson · 9 years ago
  94. c5c83d6 Issue #27960: Merge with 3.4 by Jason R. Coombs · 9 years ago
  95. 1f5fd64 Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by developed for Issue #12885. by Jason R. Coombs · 9 years ago
  96. 1bb0c0b explicitly cast away constness to silence compiler warning by Benjamin Peterson · 9 years ago
  97. 5130a4d Backed out changeset 8b6be1341770 by Benjamin Peterson · 9 years ago
  98. 4672060 Update pkgutil docs to reference appropriate finder and loader object documentation. by Senthil Kumaran · 9 years ago
  99. 6d99980 remove long double from ctypes value union by Benjamin Peterson · 9 years ago
  100. 281e5f8 Issue #26470: Use short name rather than name for compression name to fix #27958. by Christian Heimes · 9 years ago