summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Bump to 3.3.6rc1Georg Brandl2014-10-046-12/+12
| | |
* | | Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases.Georg Brandl2014-10-121-6/+6
| | |
* | | Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar.Terry Jan Reedy2014-10-121-7/+2
| | |
* | | Issue #22613: Fix reprlib.Repr subclass example on Python 3.Berker Peksag2014-10-121-4/+4
| | | | | | | | | | | | Reported by Jacques Ducasse.
* | | Issue #21061: correctly note redirect_stdout is reentrantNick Coghlan2014-10-121-1/+1
| | |
* | | asyncio doc: socket.socketpair() is not available on Windows yetVictor Stinner2014-10-113-6/+15
| | |
* | | asyncio doc: add examples showing the 3 ways to wait for data from an openVictor Stinner2014-10-113-10/+168
| | | | | | | | | | | | socket
* | | asyncio doc: cleanup Hello World examplesVictor Stinner2014-10-112-6/+11
| | |
* | | asyncio doc: the "Get HTTP headers" example now supports HTTPSVictor Stinner2014-10-111-6/+16
| | |
* | | mergeGeorg Brandl2014-10-116-7/+20
|\ \ \
| * | | Closes #18959: move optparse and imp to new "superseded modules" chapterGeorg Brandl2014-10-114-2/+15
| | | |
| * | | Closes #21687: delimiter in Py_SetPath is platform dependentGeorg Brandl2014-10-111-1/+3
| | | |
| * | | Closes #21675: fix ordering of description in library introGeorg Brandl2014-10-111-4/+2
| | | |
* | | | Issue #22601: run_forever() now consumes BaseException of the temporary taskVictor Stinner2014-10-112-2/+30
|/ / / | | | | | | | | | | | | If the coroutine raised a BaseException, consume the exception to not log a warning. The caller doesn't have access to the local task.
* | | prevent passing NULL to memcpy (closes #22605)Benjamin Peterson2014-10-111-1/+1
| | | | | | | | | | | | Patch by Jakub Wilk.
* | | Issue #21986: Idle now matches interpreter in not pickling user code objects.Terry Jan Reedy2014-10-101-10/+10
| | | | | | | | | | | | Patch by Claudiu Popa
* | | Issue #22604: Fix assertion error in debug mode when dividing a complex ↵Antoine Pitrou2014-10-103-4/+16
| | | | | | | | | | | | number by (nan+0j).
* | | Issue #15414: Clean and correct the os.path.join docs.Zachary Ware2014-10-101-11/+16
| | | | | | | | | | | | | | | | | | In particular, correctly describe the behavior of ntpath.join. Based on a patch by Dave Sawyer.
* | | Issue 22603: add Francisco Fernández Castaño to ACKS.Terry Jan Reedy2014-10-101-0/+1
| | |
* | | Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño.Terry Jan Reedy2014-10-101-2/+2
| | |
* | | Issue #11694: Raise ConversionError in xdrlib as documentedPetri Lehtinen2014-10-103-8/+52
| | |
* | | test_venv: use support.rmtree() instead of shutil.rmtree() to fix sporadicVictor Stinner2014-10-101-11/+10
| | | | | | | | | | | | failures on Windows
* | | Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present.Berker Peksag2014-10-102-0/+11
| | | | | | | | | | | | Patch by Remi Pointel.
* | | Issue #22564: ssl doc: mention asyncio in the non-blocking sectionVictor Stinner2014-10-101-2/+10
| | |
* | | Issue #22564: ssl doc: mention how SSLSocket are usually createdVictor Stinner2014-10-101-0/+3
| | |
* | | Issue #22564: ssl doc: use "class" marker to document the SSLSocket classVictor Stinner2014-10-101-24/+26
| | |
* | | Issue #22564: ssl doc: document read(), write(), pending, server_side andVictor Stinner2014-10-101-0/+54
| | | | | | | | | | | | server_hostname methods and attributes of SSLSocket.
* | | Issue #22564: ssl doc: fix typosVictor Stinner2014-10-101-2/+2
| | |
* | | Issue #20167: revise condition to accomodate message change.Terry Jan Reedy2014-10-101-11/+4
| | |
* | | #18176: Change generic UCD PropList link to version specific link.R David Murray2014-10-102-2/+4
| | |
* | | De-'colour'ize stdlib except for idlelib.configDialog.Terry Jan Reedy2014-10-095-23/+25
| | | | | | | | | | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler.
* | | #18176: fix another reference and add it to the makeunicodedata comment.R David Murray2014-10-092-1/+2
| | |
* | | #18176: updated stdtypes UCD link, added reminder to makeunicodedata.R David Murray2014-10-092-1/+5
| | | | | | | | | | | | Patch by Alexander Belopolsky.
* | | Issue #22588: Fix typo in _testcapi.test_incref_decref_API()Victor Stinner2014-10-091-1/+1
| | |
* | | Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime"Victor Stinner2014-10-091-21/+21
| | | | | | | | | | | | | | | variable to "ut" to avoid conflict with the C utime() function. Patch written by Jeffrey Armstrong.
* | | Closes #22580: Fix documentation of PyUnicode_Tailmatch()Victor Stinner2014-10-091-1/+1
| | | | | | | | | | | | The result type is Py_ssize_t (and not int).
* | | Issue 3068: Move idlelib.configDialog action button creation into a separateTerry Jan Reedy2014-10-091-19/+21
| | | | | | | | | | | | method so it can be reused by the new extension dialog.
* | | Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-085-42/+33
| | | | | | | | | | | | _PyErr_ChainExceptions() function.
* | | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ↵Antoine Pitrou2014-10-088-161/+63
| | | | | | | | | | | | | | | | | | exception tracebacks. Initial patch by Mark Shannon.
* | | Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods.Berker Peksag2014-10-081-4/+4
| | | | | | | | | | | | The correct parameter name is "fp", not "file".
* | | Merge from 3.4.2 release head back into 3.4 mainline.Larry Hastings2014-10-0811-12619/+99
|\ \ \
| * | | Post-release changes after 3.4.2 final.Larry Hastings2014-10-082-1/+13
| | | |
| * | | Added tag v3.4.2 for changeset ab2c023a9432Larry Hastings2014-10-061-0/+1
| | | |
| * | | Release bump for 3.4.2 final.v3.4.2Larry Hastings2014-10-065-8/+8
| | | |
| * | | Update pydoc topics and fix supsicious markup for 3.4.2 final.Larry Hastings2014-10-063-85/+85
| | | |
| * | | Drop pydocgui.pyw from the distribution.Martin v. Löwis2014-09-211-4/+1
| | | |
* | | | idlelib.configHandler: revise docstrings, add spaces, use False/True, add someTerry Jan Reedy2014-10-071-255/+233
| | | | | | | | | | | | | | | | TODOs (mostly to do after add tests), and make a few other changes.
* | | | use source role instead of linking to svnBenjamin Peterson2014-10-071-9/+8
| | | |
* | | | Closes #16155: fix a few errors in doctest output of the FAQ pages.Georg Brandl2014-10-063-6/+17
| | | |
* | | | Closes #12148: clarify "or's together option flags" in doctest docs.Georg Brandl2014-10-061-3/+3
| | | |