summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15657: Delete incorrect statement from PyMethodDef documentationBerker Peksag2016-06-121-3/+2
|
* Issue #27289: Prevent test_urllib2net failures due to EOFError raised by ftplibBerker Peksag2016-06-121-1/+2
|
* Issue #25455: Clean up reference loops created in tests for recursiveSerhiy Storchaka2016-06-121-12/+36
| | | | functools.partial objects.
* Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1Berker Peksag2016-06-123-0/+13
| | | | Patch by Dave Sawyer.
* Issue #27188: Fix various sqlite3 documentation errorsBerker Peksag2016-06-122-18/+31
| | | | | | | | | | | * Connection.execute* methods don't create intermediate cursor objects * Fix description of seq_of_parameters parameter * Clarify that Warning is sqlite3.Warning * sql_script parameter of Cursor.executescript() doesn't accept bytes * Add missing tests * Fix various markup errors Initial patch by Dave Sawyer.
* Use exc role for ValueError in multiprocessing.rstBerker Peksag2016-06-121-1/+1
|
* Issue #27221: Delete an outdated paragraph about pickle support of ProcessBerker Peksag2016-06-121-6/+1
| | | | Initial patch by Jelle Zijlstra.
* Issue #25455: Fixed a crash in repr of recursive functools.partial objects.Serhiy Storchaka2016-06-123-18/+61
|
* Merge headsSerhiy Storchaka2016-06-124-6/+7
|\
| * Fix typos and English grammar in documentation and code commentMartin Panter2016-06-123-4/+4
| |
| * Fix buggy RE “\parrot_example.py”, uncovered by Issue #27030Martin Panter2016-06-121-2/+3
| |
* | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.Serhiy Storchaka2016-06-123-4/+25
| |
* | Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-127-107/+121
|/ | | | | function with generalized unpacking (PEP 448) and conflicting keyword names could cause undefined behavior.
* Issue #16484: Fix pydoc link and test on Windows, by Kaushik NadikuditiMartin Panter2016-06-123-3/+8
|
* Issue #24136: Document generalized unpacking, PEP 448Martin Panter2016-06-125-30/+66
| | | | Based on patches by Konstantin Molchanov and Neil Girdhar.
* Issue #14209: pkgutil.iter_zipimport_modules ignores the prefix for packagesŁukasz Langa2016-06-123-4/+81
| | | | Patch by James Pickering.
* Issue #27194: superfluous truncate calls in tarfile.py slow down extractionŁukasz Langa2016-06-112-2/+3
| | | | Patch by Jason Fried.
* merge 3.4 (#26556)Benjamin Peterson2016-06-114-6/+26
|\
| * upgrade expt to 2.1.1 (closes #26556)Benjamin Peterson2016-06-114-6/+26
| |
* | merge 3.4Benjamin Peterson2016-06-112-0/+8
|\ \ | |/
| * raise an error when STARTTLS failsBenjamin Peterson2016-06-112-0/+8
| |
* | Fix typo and silence a Sphinx warning in Doc/glossary.rstBerker Peksag2016-06-111-1/+1
| |
* | Silence 'make suspicious' warningsBerker Peksag2016-06-111-3/+3
| |
* | Issue #21386: Implement missing IPv4Address.is_global propertyBerker Peksag2016-06-113-0/+13
| | | | | | | | | | | | It was documented since 07a5610bae9d. Initial patch by Roger Luethi.
* | Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-11224-136/+539
| | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* | Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait.Yury Selivanov2016-06-113-1/+35
| | | | | | | | Patch by David Coles.
* | Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost.Yury Selivanov2016-06-113-18/+29
| | | | | | | | Patch by Łukasz Langa.
* | Issue #5124: NEWS entries.Terry Jan Reedy2016-06-112-0/+8
| |
* | Issue #5124: Paste with selection should always replace.Terry Jan Reedy2016-06-112-1/+85
| | | | | | | | | | This is how paste work on Windows, Mac, modern Linux apps, and ttk widgets. The exception was X11 tk widgets. Original patch by Serhiy Storchake.
* | Issue #20900: distutils register command now decodes HTTP responses correctlyBerker Peksag2016-06-104-4/+21
| | | | | | | | Initial patch by ingrid.
* | - Issue #17500, and https://github.com/python/pythondotorg/issues/945: Removedoko@ubuntu.com2016-06-103-609/+6
| | | | | | | | unused and outdated icons.
* | Issue #27280: Fix typo in IPv6Network documentationBerker Peksag2016-06-101-1/+1
| | | | | | | | Patch by Arthur Carcano.
* | Issue #24617: Add comment for os.mkdir about mode quirksTommy Beadle2016-06-021-4/+10
| |
* | Fix typo and move comment to appropriate conditionMartin Panter2016-06-101-2/+2
| |
* | Issue #8491: Add link to Gnu Readline configuration documentationMartin Panter2016-06-101-0/+7
| |
* | [Issue 15476] Make "code object" its own entry in the indexTommy Beadle2016-06-024-11/+8
| |
* | Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-0913-32/+291
| |
* | Issue #26305: Argument Clinic now escapes braces. No need to double them.Serhiy Storchaka2016-06-092-20/+21
| |
* | Fix a comment.Barry Warsaw2016-06-081-1/+2
| |
* | Issue #27066: Fixed SystemError if a custom opener (for open()) returnsBarry Warsaw2016-06-083-1/+25
| | | | | | | | a negative number without setting an exception.
* | Omnibus news entry for updates to typing.py.Guido van Rossum2016-06-081-0/+8
| |
* | Sync typing.py with upstream.Guido van Rossum2016-06-082-4/+76
| | | | | | | | | | | | | | | | | | (Upstream is https://github.com/python/typing) - Add TYPE_CHECKING (false at runtime, true in type checkers) (upstream #230). - Avoid error on Union[xml.etree.cElementTree.Element, str] (upstream #229). - Repr of Tuple[()] should be 'Tuple[()]' (upstream #231). - Add NewType() (upstream #189).
* | asyncio: Remove line about asyncio.timeout() from the NEWS fileYury Selivanov2016-06-081-2/+0
| |
* | asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-084-260/+0
| | | | | | | | | | | | | | It will probably be added back in Python 3.6, once its compatibility issues are resolved; see [1] for more details. [1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html
* | asyncio: Update whatsnew/3.5.2Yury Selivanov2016-06-081-2/+7
| |
* | Issue #27136: Update asyncio docsYury Selivanov2016-06-081-23/+24
| |
* | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfoYury Selivanov2016-06-086-163/+116
| | | | | | | | Patch by A. Jesse Jiryu Davis
* | Issue #23275: Backport target list assignment documentation fixesMartin Panter2016-06-081-15/+14
| |
* | Issue #21593: Clarify that re.search() returns the first matchBerker Peksag2016-06-081-2/+2
| |
* | Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-085-11/+73
| | | | | | | | Patch by Susumu Koshiba.