1. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  2. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  3. db56423 Revert "bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#1908)" (#3337) by Neil Schemenauer · 7 years ago
  4. e38d12e bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#1908) by Neil Schemenauer · 7 years ago
  5. ba7d736 bpo-31243: Fixed PyArg_ParseTuple failure checks. (#3171) by Oren Milman · 7 years ago
  6. a5b4ea1 bpo-31271: Fix an assertion failure in io.TextIOWrapper.write. (#3201) by Oren Milman · 7 years ago
  7. 13614e3 bpo-28261: fix err msgs where PyArg_ParseTuple is used to parse normal tuples (leftovers) (#3198) by Oren Milman · 7 years ago
  8. a6296d3 bpo-31095: fix potential crash during GC (GH-2974) by INADA Naoki · 7 years ago
  9. 1d1d3e9 bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tuples. (#3119) by Oren Milman · 7 years ago
  10. 6969eaf bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) by Serhiy Storchaka · 7 years ago
  11. f7eae0a [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) by Serhiy Storchaka · 7 years ago
  12. e613e6a bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285) by Serhiy Storchaka · 7 years ago
  13. 7445381 bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) by Sylvain · 7 years ago
  14. 29adc13 bpo-30601: Fix a refleak in WindowsConsoleIO (#2003) by Victor Stinner · 7 years ago
  15. 3c2817b Fix bpo-30526: Add TextIOWrapper.reconfigure() and a TextIOWrapper.write_through attribute (#1922) by Antoine Pitrou · 7 years ago
  16. 523776c bpo-30544: _io._WindowsConsoleIO.write raises the wrong error when WriteConsoleW fails (#1912) by Segev Finer · 7 years ago
  17. 9997073 bpo-30228: FileIO seek() and tell() set seekable (#1384) by Victor Stinner · 7 years ago
  18. bf623ae bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) by Serhiy Storchaka · 7 years ago
  19. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 7 years ago
  20. 026435c bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is present (#1130) by Xiang Zhang · 7 years ago
  21. 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 7 years ago
  22. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  23. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  24. fff9a31 bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) by Serhiy Storchaka · 7 years ago
  25. a5af6e1 bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514) by Serhiy Storchaka · 7 years ago
  26. 0042510 bpo-29730: replace some calls to PyNumber_Check and improve some error messages (#650) by Oren Milman · 7 years ago
  27. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 7 years ago
  28. 7400254 bpo-29741: Clean up C implementations of BytesIO and StringIO. (#606) by orenmn · 7 years ago
  29. 8c67fdd Merge from 3.6 by Steve Dower · 7 years ago
  30. a7e1648 Adds precheck for console filename to fix Windows 7. by Steve Dower · 7 years ago
  31. 43fec9b Merge issue #28164 and issue #29409 by Steve Dower · 7 years ago
  32. 722e3e2 Issue #28164: Correctly handle special console filenames (patch by Eryk Sun) by Steve Dower · 7 years ago
  33. eacee98 Issue #29409: Implement PEP 529 for io.FileIO (Patch by Eryk Sun) by Steve Dower · 7 years ago
  34. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  35. 0c4a828 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  36. 259f0e4 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  37. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  38. 446a498 Merge doc fixes from 3.6 by Martin Panter · 8 years ago
  39. 4659ddc Merge doc fixes from 3.5 by Martin Panter · 8 years ago
  40. 536d70e Fix grammar, typos and markup in documentation and code comments by Martin Panter · 8 years ago
  41. 280408b Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuki Yamamoto by Steve Dower · 8 years ago
  42. bfce0f9 Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuki Yamamoto by Steve Dower · 8 years ago
  43. 61bdb0d Use _PyObject_CallMethodIdObjArgs() in _io by Victor Stinner · 8 years ago
  44. 7e42541 Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  45. d7d266c Merge from 3.6. by Serhiy Storchaka · 8 years ago
  46. 427f10b Merge from 3.5. by Serhiy Storchaka · 8 years ago
  47. 606ab86 Change order of io.UnsupportedOperation base classes. by Serhiy Storchaka · 8 years ago
  48. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  49. a98c4a9 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  50. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  51. 1a73bf3 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  52. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  53. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  54. 5f548a2 Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  55. a7c972e Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  56. d63f1f7 Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  57. ccb2c0e Issue #23214: Implement optional BufferedReader, BytesIO read1() argument by Martin Panter · 8 years ago
  58. c6f9b2b Issue #28162: Fixes Ctrl+Z handling in console readall() by Steve Dower · 8 years ago
  59. 312cef7 Issue #28217: Adds _testconsole module to test console input. Fixes some issues found by the tests. by Steve Dower · 8 years ago
  60. 9df89d0 Issue #28277: remove linefeed character from iomodule.h. Patch by Michael Felt by Christian Heimes · 8 years ago
  61. e2e792d merge 3.5 (#28184) by Benjamin Peterson · 8 years ago
  62. 27f26ad Issue #28161: Opening CON for write access fails by Steve Dower · 8 years ago
  63. ec406fe Issue #27810: Regenerate Argument Clinic. by Serhiy Storchaka · 8 years ago
  64. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  65. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 8 years ago
  66. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  67. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  68. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  69. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  70. 9171a8b Issue #27574: Decreased an overhead of parsing keyword arguments in functions by Serhiy Storchaka · 8 years ago
  71. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  72. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  73. 5dee655 Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7. by Serhiy Storchaka · 8 years ago
  74. 118598a Issue #27066: Fixed SystemError if a custom opener (for open()) returns a by Barry Warsaw · 8 years ago
  75. 480e285 Issue #27066: Fixed SystemError if a custom opener (for open()) returns by Barry Warsaw · 8 years ago
  76. d62548a issue27186: add open/io.open; patch by Jelle Zijlstra by Ethan Furman · 8 years ago
  77. efe7256 Fix a comment. by Barry Warsaw · 8 years ago
  78. c249221 Issue #20699: Merge io bytes-like fixes from 3.5 by Martin Panter · 8 years ago
  79. 6bb91f3 Issue #20699: Document that “io” methods accept bytes-like objects by Martin Panter · 8 years ago
  80. abe4d52 Merge doc and comment fixes from 3.5 by Martin Panter · 8 years ago
  81. 8f26565 Fix spelling (inital), grammar (may translates) in documentation, comments by Martin Panter · 8 years ago
  82. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  83. 8b04a94 Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  84. 119e502 Fix typos in code comments and documentation by Martin Panter · 8 years ago
  85. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  86. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  87. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  88. 047f3b7 Issue #22854: Merge UnsupportedOperation fixes from 3.5 by Martin Panter · 8 years ago
  89. 754aab2 Issue #22854: Clarify documentation about UnsupportedOperation and add tests by Martin Panter · 8 years ago
  90. 928bff0 cleanup iobase.c by Victor Stinner · 8 years ago
  91. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  92. 1ed017a Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. by Serhiy Storchaka · 9 years ago
  93. bdb908e Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  94. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  95. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  96. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  97. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  98. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  99. a9406e7 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  100. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago