summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, renameVictor Stinner2014-08-012-10/+10
* timemodule.c: Replace PyExc_IOError with PyExc_OSErrorVictor Stinner2014-07-311-5/+5
* Issue #22085: Dropped support of Tk 8.3 in Tkinter.Serhiy Storchaka2014-07-301-26/+13
* Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-2/+2
|\
| * Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-2/+2
* | Issue #22003: When initialized from a bytes object, io.BytesIO() nowAntoine Pitrou2014-07-291-51/+151
* | Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets.Victor Stinner2014-07-291-18/+165
* | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-0/+54
* | Issue #21704: Merge.Richard Oudkerk2014-07-281-0/+2
|\ \ | |/
| * Issue #21704: Fix build error for _multiprocessing when semaphoresRichard Oudkerk2014-07-281-0/+2
* | Issue #22076: Minor grammar fix.Berker Peksag2014-07-271-2/+2
* | Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.Martin v. Löwis2014-07-274-158/+696
* | (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail withVictor Stinner2014-07-261-2/+9
|\ \ | |/
| * Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-261-2/+9
* | mergeRaymond Hettinger2014-07-251-7/+7
|\ \ | |/
| * Issue #22044: Fixed premature DECREF in call_tzinfo_method.Raymond Hettinger2014-07-251-7/+7
* | Issue #18093: Factor out the programs that embed the runtimeNick Coghlan2014-07-254-361/+2
* | Backout 42ced0d023cd: oops, i didn't want to push this changeset :-/Victor Stinner2014-07-241-136/+19
* | (Merge 3.4) Issue #19884, readline: calling rl_variable_bindVictor Stinner2014-07-241-1/+5
|\ \ | |/
| * Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off")Victor Stinner2014-07-241-1/+5
* | tetsVictor Stinner2014-07-241-19/+136
* | (Merge 3.4) Issue #19884: readline: Disable the meta modifier key if stdout isVictor Stinner2014-07-241-0/+11
|\ \ | |/
| * Issue #19884: readline: Disable the meta modifier key if stdout is not aVictor Stinner2014-07-241-0/+11
* | Issue #22042: Avoid dangerous C cast in socket.setblocking()Victor Stinner2014-07-231-2/+5
* | Issue #4350: Removed a number of out-of-dated and non-working for a long timeSerhiy Storchaka2014-07-231-19/+0
* | Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of aVictor Stinner2014-07-211-3/+11
* | Issue #22018: Add _testcapi.raise_signal()Victor Stinner2014-07-212-26/+21
* | Call PyErr_NoMemory() when PyMem_Malloc() fails.Serhiy Storchaka2014-07-141-1/+3
|\ \ | |/
| * Call PyErr_NoMemory() when PyMem_Malloc() fails.Serhiy Storchaka2014-07-141-1/+3
* | Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead ofVictor Stinner2014-07-111-6/+13
* | Fix compilation failure (followup to #21803)Antoine Pitrou2014-07-071-3/+3
* | (Merge 3.4) Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" formatVictor Stinner2014-07-071-1/+1
|\ \ | |/
| * Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" format requiresVictor Stinner2014-07-071-1/+1
| * properly decref the return value of close()Benjamin Peterson2014-07-051-3/+5
* | upgrade to unicode 7.0.0Benjamin Peterson2014-07-062-22467/+25009
* | properly decref the return value of close()Benjamin Peterson2014-07-051-3/+5
* | (Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errorsVictor Stinner2014-07-021-2/+2
|\ \ | |/
| * Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,Victor Stinner2014-07-021-2/+2
* | (Merge 3.4) Issue #8677: make the zlib module "ssize_t clean" for parsingVictor Stinner2014-07-011-0/+1
|\ \ | |/
| * Issue #8677: make the zlib module "ssize_t clean" for parsing parametersVictor Stinner2014-07-011-0/+1
* | (Merge 3.4) Closes #21780: make the unicodedata module "ssize_t clean" forVictor Stinner2014-07-011-2/+8
|\ \ | |/
| * Closes #21780: make the unicodedata module "ssize_t clean" for parsing parame...Victor Stinner2014-07-011-2/+8
* | (Merge 3.4) Issue #21781: Make the ssl module "ssize_t clean" for parsingVictor Stinner2014-07-011-2/+9
|\ \ | |/
| * Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters.Victor Stinner2014-07-011-2/+9
* | (Merge 3.4) Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zuVictor Stinner2014-07-011-2/+3
|\ \ | |/
| * Closes #21892, #21893: Use PY_FORMAT_SIZE_T instead of %zi or %zu to format CVictor Stinner2014-07-011-2/+3
* | Fix typo in socket.getaddrinfo() docstring.Berker Peksag2014-06-301-4/+4
|\ \ | |/
| * Fix typo in socket.getaddrinfo() docstring.Berker Peksag2014-06-301-4/+4
* | Issue #21679: Prevent extraneous fstat() calls during open(). Patch by Bohus...Antoine Pitrou2014-06-302-40/+34
* | Issue #21863: cProfile now displays the module name of C extension functions,...Antoine Pitrou2014-06-281-2/+9