summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Merge 3.4 (tracemalloc typo)Victor Stinner2015-03-181-1/+1
|\
| * _tracemalloc.c: Fix typoVictor Stinner2015-03-181-1/+1
* | Fix compiler warning in mmapmodule.c (compare signed/unsigned integers)Victor Stinner2015-03-181-1/+1
* | Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file()Victor Stinner2015-03-181-0/+3
* | Issue #23694: Enhance _Py_fopen(), it now raises an exception on errorVictor Stinner2015-03-182-10/+4
* | Issue #23694: Enhance _Py_open(), it now raises exceptionsVictor Stinner2015-03-175-21/+9
* | Issue #23685: Fix usage of PyMODINIT_FUNC in _json, _scproxy, nis, pyexpatVictor Stinner2015-03-175-15/+5
* | Revert changeset d927047b1d8eb87738676980a24930d053ba2150Victor Stinner2015-03-171-69/+49
* | testVictor Stinner2015-03-121-49/+69
* | Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-122-2/+2
|\ \ | |/
| * Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-122-2/+2
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later()Victor Stinner2015-03-121-21/+35
* | Issue #23524: Change back to using Windows errors for _Py_fstat instead of th...Steve Dower2015-03-082-2/+8
* | Issue #22524: Fix os.scandir() for platforms which don't have a d_type field inVictor Stinner2015-03-081-11/+27
* | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir()Victor Stinner2015-03-081-20/+798
* | Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() nowVictor Stinner2015-03-062-8/+0
* | Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_in...Steve Dower2015-03-062-89/+5
* | Fix regression introduced by changeset 7c6e3358221a that caused compileNed Deily2015-03-051-2/+2
* | Fixed GCC version testing.Serhiy Storchaka2015-03-051-2/+2
* | Fix "GCC diagnostic" in socketmodule.cVictor Stinner2015-03-051-2/+2
* | merge 3.4Benjamin Peterson2015-03-051-0/+4
|\ \ | |/
| * expose X509_V_FLAG_TRUSTED_FIRSTBenjamin Peterson2015-03-051-0/+4
* | merge 3.4 (#23476)Benjamin Peterson2015-03-051-0/+9
|\ \ | |/
| * enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476)Benjamin Peterson2015-03-051-0/+9
* | Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SS...Antoine Pitrou2015-03-041-20/+0
|\ \ | |/
| * Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SS...Antoine Pitrou2015-03-041-20/+0
* | Issue #23285: Fix handling of EINTR in fileio.cVictor Stinner2015-03-041-28/+46
* | Minor neatening-up. Make assignments in same order a struct fields. Line-up...Raymond Hettinger2015-03-031-12/+12
* | Switch the state variable to unsigned for defined wrap-around behavior.Raymond Hettinger2015-03-031-3/+3
* | Minor beautification. Move struct definitions to the top. Fix-up a comment.Raymond Hettinger2015-03-031-15/+15
* | Minor code beautification. Replace macro with in-lineable functions.Raymond Hettinger2015-03-031-20/+35
* | Beautify and better document the use of the size_t cast for bounds checking.Raymond Hettinger2015-03-031-6/+12
* | merge 3.4 (#23367)Benjamin Peterson2015-03-021-3/+10
|\ \ | |/
| * merge 3.3 (#23367)Benjamin Peterson2015-03-021-3/+10
| |\
| | * fix possible overflow bugs in unicodedata (closes #23367)Benjamin Peterson2015-03-021-3/+10
* | | Issue #23451: Update pyconfig.h for Windows to require Vista headers and remo...Steve Dower2015-03-022-0/+15
* | | Issue #7830: Flatten nested functools.partial.Alexander Belopolsky2015-03-011-7/+48
* | | Closes issue #22791: Improved datetime from timestamp methods documentation.Alexander Belopolsky2015-03-011-2/+1
* | | Issue #23553: Use an unsigned cast to tighten-up the bounds checking logic.Raymond Hettinger2015-03-011-2/+2
* | | Merge headsSerhiy Storchaka2015-03-011-6/+12
|\ \ \
| * | | Need a (size_t) cast instead of (unsigned) to be big enough for a Py_ssize_t.Raymond Hettinger2015-03-011-6/+12
* | | | Issue #20204: Added the __module__ attribute to _tkinter classes.Serhiy Storchaka2015-03-011-2/+2
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Issue #20204: Added the __module__ attribute to _tkinter classes.Serhiy Storchaka2015-03-011-2/+2
* | | Use unsigned division and modulo for item assignment as well.Raymond Hettinger2015-03-011-4/+5
* | | Convert one more division to unsigned arithmetic to speed-up deque_item().Raymond Hettinger2015-02-281-1/+3
* | | Line missed in last checkinRaymond Hettinger2015-02-281-1/+0
* | | Since the index is always non-negative, use faster unsigned division and modulo.Raymond Hettinger2015-02-271-3/+5
* | | Bump the blocksize up from 62 to 64 to speed up the modulo calculation.Raymond Hettinger2015-02-271-6/+3
* | | Silenced minor GCC warnings.Serhiy Storchaka2015-02-263-2/+17
* | | Issue #15955: Add an option to limit the output size in bz2.decompress().Antoine Pitrou2015-02-262-72/+224