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