1. e42ccd2 Issue #23694: Enhance _Py_fopen(), it now raises an exception on error by Victor Stinner · 10 years ago
  2. a555cfc Issue #23694: Enhance _Py_open(), it now raises exceptions by Victor Stinner · 10 years ago
  3. f024d26 Issue #23685: Fix usage of PyMODINIT_FUNC in _json, _scproxy, nis, pyexpat by Victor Stinner · 10 years ago
  4. 0c2fd89 Revert changeset d927047b1d8eb87738676980a24930d053ba2150 by Victor Stinner · 10 years ago
  5. 945c82e test by Victor Stinner · 10 years ago
  6. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  7. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  8. 95bb714 Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() by Victor Stinner · 10 years ago
  9. 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 10 years ago
  10. 35a97c0 Issue #22524: Fix os.scandir() for platforms which don't have a d_type field in by Victor Stinner · 10 years ago
  11. 6036e44 Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() by Victor Stinner · 10 years ago
  12. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 10 years ago
  13. d81431f Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread. by Steve Dower · 10 years ago
  14. e37a194 Fix regression introduced by changeset 7c6e3358221a that caused compile by Ned Deily · 10 years ago
  15. caa01f8 Fixed GCC version testing. by Serhiy Storchaka · 10 years ago
  16. a4c7271 Fix "GCC diagnostic" in socketmodule.c by Victor Stinner · 10 years ago
  17. de8eca4 merge 3.4 by Benjamin Peterson · 10 years ago
  18. 990fcaa expose X509_V_FLAG_TRUSTED_FIRST by Benjamin Peterson · 10 years ago
  19. b64ae7b merge 3.4 (#23476) by Benjamin Peterson · 10 years ago
  20. fdb1971 enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476) by Benjamin Peterson · 10 years ago
  21. 0bfd0a4 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
  22. f7f3b0a 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
  23. 9672da7 Issue #23285: Fix handling of EINTR in fileio.c by Victor Stinner · 10 years ago
  24. 87e6912 Minor neatening-up. Make assignments in same order a struct fields. Line-up comments. by Raymond Hettinger · 10 years ago
  25. f9d9c79 Switch the state variable to unsigned for defined wrap-around behavior. by Raymond Hettinger · 10 years ago
  26. 30c9074 Minor beautification. Move struct definitions to the top. Fix-up a comment. by Raymond Hettinger · 10 years ago
  27. f30f5b9 Minor code beautification. Replace macro with in-lineable functions. by Raymond Hettinger · 10 years ago
  28. 3c186ba Beautify and better document the use of the size_t cast for bounds checking. by Raymond Hettinger · 10 years ago
  29. 83d8fc2 merge 3.4 (#23367) by Benjamin Peterson · 10 years ago
  30. 5061e67 merge 3.3 (#23367) by Benjamin Peterson · 10 years ago
  31. b779bfb fix possible overflow bugs in unicodedata (closes #23367) by Benjamin Peterson · 10 years ago
  32. 3e96f32 Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. by Steve Dower · 10 years ago
  33. e49af34 Issue #7830: Flatten nested functools.partial. by Alexander Belopolsky · 10 years ago
  34. e2e178e Closes issue #22791: Improved datetime from timestamp methods documentation. by Alexander Belopolsky · 10 years ago
  35. 7f9ea75 Issue #23553: Use an unsigned cast to tighten-up the bounds checking logic. by Raymond Hettinger · 10 years ago
  36. 90295b4 Merge heads by Serhiy Storchaka · 10 years ago
  37. c208308 Need a (size_t) cast instead of (unsigned) to be big enough for a Py_ssize_t. by Raymond Hettinger · 10 years ago
  38. 50adb9f Issue #20204: Added the __module__ attribute to _tkinter classes. by Serhiy Storchaka · 10 years ago
  39. efdc16f9 Issue #20204: Added the __module__ attribute to _tkinter classes. by Serhiy Storchaka · 10 years ago
  40. a473b9d Use unsigned division and modulo for item assignment as well. by Raymond Hettinger · 10 years ago
  41. 63d1ff2 Convert one more division to unsigned arithmetic to speed-up deque_item(). by Raymond Hettinger · 10 years ago
  42. 7e8c795 Line missed in last checkin by Raymond Hettinger · 10 years ago
  43. da2850f Since the index is always non-negative, use faster unsigned division and modulo. by Raymond Hettinger · 10 years ago
  44. daf57f2 Bump the blocksize up from 62 to 64 to speed up the modulo calculation. by Raymond Hettinger · 10 years ago
  45. b48af34 Silenced minor GCC warnings. by Serhiy Storchaka · 10 years ago
  46. e71258a Issue #15955: Add an option to limit the output size in bz2.decompress(). by Antoine Pitrou · 10 years ago
  47. f63dab5 Back-out wcstok deprecation suppression and updates calls to use wcstok_s. by Steve Dower · 10 years ago
  48. 06a13f8 Issue #23152: Move declarations back to posixmodule.c. by Serhiy Storchaka · 10 years ago
  49. 12ebbc7 Issue #23152: Move declaration into a header and exclude from stable API. by Serhiy Storchaka · 10 years ago
  50. bf1f376 Issue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes unused struct win32_stat and return value by Steve Dower · 10 years ago
  51. a2af1a5 Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat by Steve Dower · 10 years ago
  52. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 10 years ago
  53. df80706 Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 10 years ago
  54. a1543cd Issue #23215: Multibyte codecs with custom error handlers that ignores errors by Serhiy Storchaka · 10 years ago
  55. 254dd59 Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 10 years ago
  56. a3712a9 Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 10 years ago
  57. 79d8f3f Regenerated Argument Clinic checksums. by Serhiy Storchaka · 10 years ago
  58. 7a4f43a Improve struct cache locality by bring commonly accessed fields close together. by Raymond Hettinger · 10 years ago
  59. 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 10 years ago
  60. 3584056 Shoould be Py_MIN, not Py_MAX. by Serhiy Storchaka · 10 years ago
  61. 26861b0 Issue #23450: Fixed possible integer overflows. by Serhiy Storchaka · 10 years ago
  62. 4d0d982 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 10 years ago
  63. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 10 years ago
  64. 53fa8b2 Fixed few compiler warnings. by Serhiy Storchaka · 10 years ago
  65. c86ca26 Issue #23096: Pickle representation of floats with protocol 0 now is the same by Serhiy Storchaka · 10 years ago
  66. 9ab1cc4 Issue #13637: Improve exception message of a2b_* functions. by Berker Peksag · 10 years ago
  67. 3cd30c2 Issue #13637: Improve exception message of a2b_* functions. by Berker Peksag · 10 years ago
  68. cf40a9e Issue #23450: Fix signal.set_wakeup_fd() on Windows by Victor Stinner · 10 years ago
  69. 385efb4 Merge 3.4 (faulthandler) by Victor Stinner · 10 years ago
  70. 7a5567a Issue #23433: Fix faulthandler._stack_overflow() by Victor Stinner · 10 years ago
  71. eb6b554 Update copyright. by Raymond Hettinger · 10 years ago
  72. 5ef01e9 merge 3.4 (#23361) by Benjamin Peterson · 10 years ago
  73. 22ef9f7 merge 3.3 (#23361) by Benjamin Peterson · 10 years ago
  74. 8ce6806 add overflow checking (closes #23361) by Benjamin Peterson · 10 years ago
  75. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 10 years ago
  76. 6cfb61f Issue #23392: Added tests for marshal C API that works with FILE*. by Serhiy Storchaka · 10 years ago
  77. b518134 Issue #23392: Added tests for marshal C API that works with FILE*. by Serhiy Storchaka · 10 years ago
  78. a7559c0 Issue #14203: Temporary fix for the compile failure on Windows. by Stefan Krah · 10 years ago
  79. 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 10 years ago
  80. 38c30e6 Issue #15381: Fixed a bug in BytesIO.write(). by Serhiy Storchaka · 10 years ago
  81. 5178d91 Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() by Stefan Krah · 10 years ago
  82. b9765ee Issue #15381: Try to fix refcount bug. Empty and 1-byte buffers are always shared. by Serhiy Storchaka · 10 years ago
  83. 87d0b45 Issue #15381: Optimized io.BytesIO to make less allocations and copyings. by Serhiy Storchaka · 10 years ago
  84. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 10 years ago
  85. 32ca3dc Issue #23099: Closing io.BytesIO with exported buffer is rejected now to by Serhiy Storchaka · 10 years ago
  86. c057c38 Issue #23099: Closing io.BytesIO with exported buffer is rejected now to by Serhiy Storchaka · 10 years ago
  87. 7a27c97 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  88. b5e8e57 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  89. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  90. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  91. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  92. 0e259f1 Optimization guides suggest copying memory in an ascending direction when possible. by Raymond Hettinger · 10 years ago
  93. 5d0bb85 merge 3.4 (#23364, #23363) by Benjamin Peterson · 10 years ago
  94. c468b53 merge 3.3 (#23364, #23363) by Benjamin Peterson · 10 years ago
  95. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  96. 38d9772 merge 3.4 (#23365) by Benjamin Peterson · 10 years ago
  97. f635dc3 merge 3.3 (#23365) by Benjamin Peterson · 10 years ago
  98. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  99. 4db56d5 merge 3.4 (#23366) by Benjamin Peterson · 10 years ago
  100. 819c4e9 merge 3.3 (#23366) by Benjamin Peterson · 10 years ago