summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21907: Try to make the pre-Vista Windows buildbots happier.Zachary Ware2014-10-111-0/+10
| | | | Initial patch by David Bolen.
* Issue #22489: Update .gitignore to ignore Windows build output.Zachary Ware2014-10-111-0/+10
| | | | Initial patch by Robert Collins.
* merge 3.4 (closes #22605)Benjamin Peterson2014-10-111-1/+1
|\
| * prevent passing NULL to memcpy (closes #22605)Benjamin Peterson2014-10-111-1/+1
| | | | | | | | Patch by Jakub Wilk.
* | Merge with 3.4: #21986, don't pickle user code objects.Terry Jan Reedy2014-10-101-10/+10
|\ \ | |/
| * 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 #22604: Fix assertion error in debug mode when dividing a complex ↵Antoine Pitrou2014-10-103-4/+16
| | | | | | | | number by (nan+0j).
* | Closes #15414: Merge with 3.4Zachary Ware2014-10-101-11/+16
|\ \ | |/
| * 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.
* | Merge with 3.4Terry Jan Reedy2014-10-101-0/+1
|\ \ | |/
| * Issue 22603: add Francisco Fernández Castaño to ACKS.Terry Jan Reedy2014-10-101-0/+1
| |
* | Issue #20152: Port the array module to Argument Clinic.Brett Cannon2014-10-104-274/+871
| |
* | Merge with 3.4Terry Jan Reedy2014-10-101-2/+2
|\ \ | |/
| * Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño.Terry Jan Reedy2014-10-101-2/+2
| |
* | #11694: merge with 3.4Petri Lehtinen2014-10-103-8/+52
|\ \ | |/
| * Issue #11694: Raise ConversionError in xdrlib as documentedPetri Lehtinen2014-10-103-8/+52
| |
* | Issue #21052: Don't raise ImportWarning for sys.meta_path orBrett Cannon2014-10-103-26/+31
| | | | | | | | | | | | sys.path_hooks when set to None during interpreter shutdown. Thanks to Martin Panter for the initial bug report.
* | (Merge 3.4) test_venv: use support.rmtree() instead of shutil.rmtree() to fixVictor Stinner2014-10-101-11/+10
|\ \ | |/ | | | | sporadic failures on Windows
| * 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 #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: cleanup SSLObject docVictor Stinner2014-10-101-25/+38
| |
* | Issue #22564: ssl doc, add more links to the non-blocking sectionVictor Stinner2014-10-101-5/+7
| |
* | Issue #22564: ssl doc: reorganize and reindent documentation of SSLObject andVictor Stinner2014-10-101-69/+69
| | | | | | | | MemoryBIO; move documentation of SSLContext.wrap_bio()
* | Merge 3.4Victor Stinner2014-10-101-2/+10
|\ \ | |/
| * Issue #22564: ssl doc: mention asyncio in the non-blocking sectionVictor Stinner2014-10-101-2/+10
| |
* | Merge 3.4Victor Stinner2014-10-101-35/+51
|\ \ | |/
| * 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 #22591: Drop support of MS-DOSVictor Stinner2014-10-101-4/+1
| | | | | | | | | | | | Drop support of MS-DOS, especially of the DJGPP compiler (MS-DOS port of GCC). Today is a sad day. Good bye MS-DOS, good bye my friend :'-(
* | Issue #19380: Optimized parsing of regular expressions.Serhiy Storchaka2014-10-102-150/+122
| |
* | Issue #22584: Got rid of character tables in _sre.c and use standard macrosSerhiy Storchaka2014-10-101-34/+6
| | | | | | | | Py_TOLOWER, Py_ISSPACE, etc.
* | Issue 1519638: Now unmatched groups are replaced with empty strings in re.sub()Serhiy Storchaka2014-10-105-8/+26
| | | | | | | | and re.subn().
* | Merge with 3.4Terry Jan Reedy2014-10-101-11/+4
|\ \ | |/
| * Issue #20167: revise condition to accomodate message change.Terry Jan Reedy2014-10-101-11/+4
| |
* | Merge: #18176: Change generic UCD PropList link to version specific link.R David Murray2014-10-102-2/+4
|\ \ | |/
| * #18176: Change generic UCD PropList link to version specific link.R David Murray2014-10-102-2/+4
| |
* | Merge with 3.4: decolourizeTerry Jan Reedy2014-10-095-23/+25
|\ \ | |/
| * 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.
* | Closes #22579: Fix posixmodule.c to support any C compiler on WindowsVictor Stinner2014-10-091-1/+1
| |
* | Merge: #18176: fix another reference and add it to the makeunicodedata comment.R David Murray2014-10-092-1/+2
|\ \ | |/
| * #18176: fix another reference and add it to the makeunicodedata comment.R David Murray2014-10-092-1/+2
| |
* | Merge: #18176: updated stdtypes UCD link, added reminder to makeunicodedata.R David Murray2014-10-092-1/+5
|\ \ | |/
| * #18176: updated stdtypes UCD link, added reminder to makeunicodedata.R David Murray2014-10-092-1/+5
| | | | | | | | Patch by Alexander Belopolsky.
* | #18615: Make sndhdr return namedtuples.R David Murray2014-10-095-5/+39
| | | | | | | | Patch by Claudiu Popa.
* | Merge 3.4Victor Stinner2014-10-091-1/+1
|\ \ | |/
| * Issue #22588: Fix typo in _testcapi.test_incref_decref_API()Victor Stinner2014-10-091-1/+1
| |