summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22116: C functions and methods (of the 'builtin_function_or_method' ↵Antoine Pitrou2014-08-062-0/+4
| | | | type) can now be weakref'ed. Patch by Wei Wu.
* Issue #5411: Added support for the "xztar" format in the shutil module.Serhiy Storchaka2014-08-061-0/+2
|
* Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particularSerhiy Storchaka2014-08-061-0/+4
|\ | | | | | | | | when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the __new__() method.
| * Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particularSerhiy Storchaka2014-08-061-0/+4
| | | | | | | | | | when unpickling pickled sqlite3.Row). sqlite3.Row is now initialized in the __new__() method.
* | Move misplaced Misc/NEWS entries to correct locations.Serhiy Storchaka2014-08-061-23/+22
| | | | | | | | Eliminate deprecated the "Extension Modules" section.
* | - Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimicBarry Warsaw2014-08-051-0/+4
| | | | | | | | | | | | | | | | | | | | | | `mkdir -p` and `os.makedirs()` functionality. When true, ignore FileExistsErrors. Patch by Berker Peksag. (With minor cleanups, additional tests, doc tweaks, etc. by Barry) Also: * Remove some unused imports in test_pathlib.py reported by pyflakes.
* | Issue #22127: Bypass IDNA for pure-ASCII host names (in particular for ↵Martin v. Löwis2014-08-051-1/+1
| | | | | | | | numeric IPs).
* | Issue #22127: Bypass IDNA for pure-ASCII host names (in particular for ↵Martin v. Löwis2014-08-051-0/+3
| | | | | | | | numeric IPs).
* | Issue #22120: For functions using an unsigned integer return converter,Larry Hastings2014-08-051-0/+4
| | | | | | | | | | Argument Clinic now generates a cast to that type for the comparison to -1 in the generated code. (This supresses a compilation warning.)
* | Issue #20170: Convert posixmodule to use Argument Clinic.Larry Hastings2014-08-051-0/+2
| |
* | #18034: merge with 3.4.Ezio Melotti2014-08-041-0/+1
|\ \ | |/
| * #18034: update FAQ to suggest importlib.import_module instead of __import__. ↵Ezio Melotti2014-08-041-0/+1
| | | | | | | | Patch by Wouter van Heyst.
* | Closes #22104: Merge with 3.4Zachary Ware2014-08-041-0/+3
|\ \ | |/
| * Issue #22104: Don't hold a reference to the loaded TestSuite in runtest_innerZachary Ware2014-08-041-0/+3
| |
* | #20977: merge with 3.4.Ezio Melotti2014-08-041-0/+1
|\ \ | |/
| * #20977: fix undefined name in the email module. Patch by Rose Ames.Ezio Melotti2014-08-041-0/+1
| |
* | #21047: set the default value for the *convert_charrefs* argument of ↵Ezio Melotti2014-08-021-0/+3
| | | | | | | | HTMLParser to True. Patch by Berker Peksag.
* | Add an __all__ to html.entities.Ezio Melotti2014-08-021-0/+2
| |
* | #15114: the strict mode and argument of HTMLParser, HTMLParser.error, and ↵Ezio Melotti2014-08-021-0/+3
| | | | | | | | the HTMLParserError exception have been removed.
* | Issue #22077: Improve index error messages for bytearrays, bytes, lists, andTerry Jan Reedy2014-08-021-0/+4
| | | | | | | | | | tuples by adding 'or slices'. Added ', not <typename' for bytearrays. Original patch by Claudiu Popa.
* | Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, renameVictor Stinner2014-08-012-1/+5
| | | | | | | | | | ``_Py_wchar2char()`` to :c:func:`Py_EncodeLocale`, and document these functions.
* | Issue #21907: Further improvments to build_pgo.bat. Patch by Ingolf Becker.Zachary Ware2014-08-011-0/+1
| |
* | Issue #22111: Assorted cleanups in test_imaplib. Patch by Milan Oberkirch.Antoine Pitrou2014-07-311-0/+2
| |
* | Issue #22085: Dropped support of Tk 8.3 in Tkinter.Serhiy Storchaka2014-07-301-0/+2
| |
* | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-0/+3
|\ \ | |/ | | | | In particular this allows to initialize images from binary data.
| * Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-0/+3
| | | | | | | | In particular this allows to initialize images from binary data.
* | Issue #22003: When initialized from a bytes object, io.BytesIO() nowAntoine Pitrou2014-07-292-0/+5
| | | | | | | | | | | | | | defers making a copy until it is mutated, improving performance and memory use on some use cases. Patch by David Wilson.
* | Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets.Victor Stinner2014-07-291-0/+3
| | | | | | | | A side effect is that Python depends to the WinSock library.
* | Edit NEWS entryNed Deily2014-07-291-2/+2
|\ \ | |/
| * Edit NEWS entryNed Deily2014-07-291-3/+3
| |
* | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-0/+4
| | | | | | | | | | set the blocking mode of a file descriptor (False if the O_NONBLOCK flag is set, True otherwise). These functions are not available on Windows.
* | #21704: merge with 3.4.Ezio Melotti2014-07-291-1/+0
|\ \ | |/
| * #21704: remove duplicate name in Misc/ACKS.Ezio Melotti2014-07-291-1/+0
| |
* | Merge with 3.4Terry Jan Reedy2014-07-291-0/+7
|\ \ | |/
| * Issue #17172: add NEWSTerry Jan Reedy2014-07-291-0/+7
| |
* | Issue #21704: Merge.Richard Oudkerk2014-07-282-0/+4
|\ \ | |/
| * Issue #21704: Fix build error for _multiprocessing when semaphoresRichard Oudkerk2014-07-282-0/+4
| | | | | | | | are not available. Patch by Arfrever Frehtes Taifersar Arahesis.
* | Issue #20179: Apply Argument Clinic to bytes and bytearray.Martin v. Löwis2014-07-271-0/+3
| | | | | | | | Patch by Tal Einat.
* | Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic.Martin v. Löwis2014-07-271-0/+3
| | | | | | | | Patch by Vajrasky Kok.
* | Issue #22082: Clear interned strings in slotdefs.Martin v. Löwis2014-07-261-0/+2
| |
* | (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail withVictor Stinner2014-07-261-0/+3
|\ \ | |/ | | | | OverflowError on closed socket. repr(socket.socket) already works fine.
| * Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-261-0/+3
| | | | | | | | on closed socket. repr(socket.socket) already works fine.
* | mergeRaymond Hettinger2014-07-252-0/+4
|\ \ | |/
| * Issue #22044: Fixed premature DECREF in call_tzinfo_method.Raymond Hettinger2014-07-252-0/+4
| |
* | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-0/+3
| | | | | | | | class name instead of hardcoded one.
* | Issue #21958: Merge with 3.4Zachary Ware2014-07-251-0/+3
|\ \ | |/
| * Issue #21958: Define HAVE_ROUND when building with VS 2013 and above.Zachary Ware2014-07-251-0/+3
| | | | | | | | Patch by Zachary Turner.
* | Issue #21947: handle generator-iterator objects in disNick Coghlan2014-07-252-0/+4
| | | | | | | | Patch by Clement Rouault.
* | Add missing NEWS entry for issue #18093Nick Coghlan2014-07-251-0/+4
| |
* | (Merge 3.4) Issue #16133: The asynchat.async_chat.handle_read() method nowVictor Stinner2014-07-241-0/+3
|\ \ | |/ | | | | | | | | ignores BlockingIOError exceptions. Initial patch written by Xavier de Gaye. Document also in asyncore documentation that recv() may raise BlockingIOError.