summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Sync with github repoYury Selivanov2015-05-115-36/+110
|
* Minor stylistic clean-up.Raymond Hettinger2015-05-111-6/+6
|
* Issue #24155: Optimize heapify for better cache utililzation.Raymond Hettinger2015-05-112-0/+75
|
* #21795: advertise 8BITMIME if decode_data is False.R David Murray2015-05-115-97/+219
| | | | | | Patch by Milan Oberkirch, with a few updates. This changeset also tweaks the smtpd and whatsnew docs for smtpd into what should be the final form for the 3.5 release.
* merge headsBenjamin Peterson2015-05-116-22/+180
|\
| * #21800: Add RFC 6855 support to imaplib.R David Murray2015-05-105-21/+179
| | | | | | | | | | Original patch by Milan Oberkirch, updated by myself and Maciej Szulik.
| * Issue #22906: Do incref before SetCause/SetContextYury Selivanov2015-05-101-1/+1
| |
* | merge 3.4Benjamin Peterson2015-05-111-1/+1
|\ \ | |/ |/|
| * add trailing slashBenjamin Peterson2015-05-111-1/+1
| |
* | Fix news entry for issue 24018.Guido van Rossum2015-05-091-1/+1
| |
* | Issue 22906: Increment refcount after PyException_SetContextYury Selivanov2015-05-091-0/+1
| |
* | Issue 22906: Add test file.Yury Selivanov2015-05-091-0/+34
| |
* | PEP 479: Change StopIteration handling inside generators.Yury Selivanov2015-05-0914-15/+103
| | | | | | | | Closes issue #22906.
* | Issue #24018: Add a collections.Generator abstract base class.Raymond Hettinger2015-05-094-2/+145
| |
* | merge 3.4Benjamin Peterson2015-05-093-2/+15
|\ \ | |/
| * ensure .keywords is always a dictBenjamin Peterson2015-05-093-9/+9
| |
* | merge 3.4 (#23042)Benjamin Peterson2015-05-091-18/+30
|\ \ | |/
| * merge headsBenjamin Peterson2015-05-092-1/+1
| |\
| * | fix libffi compilation on FreeBSD (#23042)Benjamin Peterson2015-05-091-18/+30
| | | | | | | | | | | | Patch from Marc-Andre Lemburg.
* | | merge - upgrade setuptools to 15.2Donald Stufft2015-05-092-1/+1
|\ \ \ | | |/ | |/|
| * | Upgrade setuptools to 15.2Donald Stufft2015-05-092-1/+1
| |/
* | Minor updates to the OS X installer ReadMe.rtf.Ned Deily2015-05-081-3/+3
|\ \ | |/
| * Minor updates to the OS X installer ReadMe.rtf.Ned Deily2015-05-081-4/+4
| |
* | Issue #20274: When calling a _sqlite.Connection, it now complains if passedLarry Hastings2015-05-082-3/+12
|\ \ | |/ | | | | | | | | any keyword arguments. Previously it silently ignored them. Also: merge related change from 3.4, also reported on Issue #20274.
| * Issue #20274: Remove ignored and erroneous "kwargs" parameters from threeLarry Hastings2015-05-082-3/+6
| | | | | | | | METH_VARARGS methods on _sqlite.Connection.
* | Merge from 3.4.Larry Hastings2015-05-082-2/+6
|\ \ | |/
| * Issue #21520: test_zipfile no longer fails if the word 'bad' appearsLarry Hastings2015-05-082-2/+6
| | | | | | | | anywhere in the name of the current directory.
* | Merge 3.4Andrew Svetlov2015-05-081-2/+1
|\ \ | |/
| * Fix doc: asyncio.Semaphore.release() actually is a regular function, not ↵Andrew Svetlov2015-05-081-2/+1
| | | | | | | | coroutine
* | Issue #24000: Improved Argument Clinic's mapping of converters to legacyLarry Hastings2015-05-087-98/+119
| | | | | | | | "format units". Updated the documentation to match.
* | Merge 3.4Benjamin Peterson2015-05-071-5/+4
|\ \ | |/
| * shorten capsule name macro; it doesn't need to be so longBenjamin Peterson2015-05-071-4/+4
| |
* | merge headsBenjamin Peterson2015-05-070-0/+0
|\ \
| * \ Merge from 3.4.Zachary Ware2015-05-071-4/+4
| |\ \
* | \ \ merge 3.4Benjamin Peterson2015-05-072-5/+5
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | remove word we don't needBenjamin Peterson2015-05-071-1/+1
| |/
| * Fix copy/paste errors.Zachary Ware2015-05-071-4/+4
| | | | | | | | Basically, s/thread/coroutine/.
* | Fixed English in error message.Serhiy Storchaka2015-05-061-1/+1
|\ \ | |/
| * Fixed English in error message.Serhiy Storchaka2015-05-061-1/+1
| |
* | Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() andSerhiy Storchaka2015-05-063-11/+68
|\ \ | |/ | | | | | | | | assertWarnsRegex() checks are not longer successful if the callable is None. Added tests for assertRaises().
| * Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() andSerhiy Storchaka2015-05-063-11/+68
| | | | | | | | | | | | assertWarnsRegex() checks are not longer successful if the callable is None. Added tests for assertRaises().
* | Use specialized functions intead of Py_BuildValue() in _tkinter.Serhiy Storchaka2015-05-061-4/+4
| |
* | Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj.Serhiy Storchaka2015-05-069-84/+115
| | | | | | | | Tkinter's getdouble() now supports any numbers (in particular int).
* | Issue #24009: Got rid of using rare "y#" format unit in TextIOWrapper.tell().Serhiy Storchaka2015-05-061-2/+11
| | | | | | | | | | Parsed value should be bytes, not general robuffer, this is required in other places.
* | Issue #24125: Saved error's line and column numbers when an error is occuredSerhiy Storchaka2015-05-062-2/+15
|\ \ | |/ | | | | during closing expatreader. Fixed a regression introduced in issue #23865.
| * Issue #24125: Saved error's line and column numbers when an error is occuredSerhiy Storchaka2015-05-062-2/+15
| | | | | | | | during closing expatreader. Fixed a regression introduced in issue #23865.
* | Fix remaining tests and remove an unused import.Berker Peksag2015-05-064-6/+7
| |
* | Merge heads.Berker Peksag2015-05-0645-102/+115
|\ \
| * | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-0645-102/+115
| | | | | | | | | | | | Patch by Christie Wilson.
* | | Remove an unnecessary flag.Eric Snow2015-05-061-2/+0
|/ /