summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #17643: Add __callback__ attribute to weakref.ref.Mark Dickinson2013-04-134-3/+44
|
* Issue #16447: Merge fix from 3.3.Mark Dickinson2013-04-133-1/+21
|\
| * Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson2013-04-133-1/+21
| |
* | Fix whitespacesAndrew Svetlov2013-04-121-1/+1
|\ \ | |/
| * Fix whitespacesAndrew Svetlov2013-04-121-1/+1
| |
* | Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-124-2/+42
|\ \ | |/ | | | | Initial patch by Yuriy Senko.
| * Issue #13355: Raise ValueError on random.triangular call with invalid params.Andrew Svetlov2013-04-124-1/+45
| | | | | | | | Initial patch by Yuriy Senko.
* | Issue #16658: add missing return to HTTPConnection.send().Andrew Svetlov2013-04-123-1/+25
|\ \ | |/ | | | | Patch by Jeff Knupp
| * Issue #16658: add missing return to HTTPConnection.send().Andrew Svetlov2013-04-123-1/+25
| | | | | | | | Patch by Jeff Knupp
* | attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595Giampaolo Rodola'2013-04-121-1/+1
| |
* | #17653: merge with 3.3.Ezio Melotti2013-04-121-1/+1
|\ \ | |/
| * #17653: fix typo in socketserver docs. Patch by Tshepang Lekhonkhobe.Ezio Melotti2013-04-121-1/+1
| |
* | Closed #9556: Allowed specifying a time-of-day for a ↵Vinay Sajip2013-04-124-8/+73
| | | | | | | | TimedRotatingFileHandler to rotate.
* | Null merge.Ezio Melotti2013-04-120-0/+0
|\ \ | |/
| * Merge heads.Ezio Melotti2013-04-121-1/+1
| |\
* | \ Merge heads.Ezio Melotti2013-04-123-379/+406
|\ \ \
| * \ \ #6696: merge with 3.3.Ezio Melotti2013-04-123-379/+406
| |\ \ \ | | |/ /
| | * | #6696: add documentation for the Profile objects, and improve ↵Ezio Melotti2013-04-123-379/+406
| | | | | | | | | | | | | | | | profile/cProfile docs. Patch by Tom Pinckney.
* | | | #17688: fix declaration for richcmp example in the docs.Andrew Svetlov2013-04-121-1/+1
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| Thanks to Daniel Mullner
| * | #17688: fix declaration for richcmp example in the docs.Andrew Svetlov2013-04-121-1/+1
| |/ | | | | | | Thanks to Daniel Mullner
* | #17692: merge with 3.3.Ezio Melotti2013-04-122-4/+8
|\ \ | |/
| * #17692: test_sqlite now works with unittest test discovery. Patch by ↵Ezio Melotti2013-04-122-4/+8
| | | | | | | | Zachary Ware.
* | #17585: merge with 3.3.Roger Serwy2013-04-123-6/+6
|\ \ | |/
| * #17585: Fixed IDLE regression. Now closes when using exit() or quit().Roger Serwy2013-04-123-6/+6
| |
* | #17699: Fix the new getpass test failures on windows.R David Murray2013-04-111-12/+25
| | | | | | | | Patch by Zachary Ware.
* | Issue #13056: Reenable test_multibytecodec.Test_StreamWriter testsVictor Stinner2013-04-111-51/+22
| |
* | Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead ofVictor Stinner2013-04-1115-440/+401
| | | | | | | | | | | | the legacy Py_UNICODE API. Add also a new _PyUnicodeWriter_WriteChar() function.
* | python-gdb.py: Replace invalid Unicode character with U+FFFD to be able toVictor Stinner2013-04-111-1/+3
| | | | | | | | | | | | display invalid strings. Such strings can be found while Python is creating a new string, in a text decoder for example, when Python is compiled in debug mode.
* | Fix supernumerary 's' in sys._debugmallocstats() output.Antoine Pitrou2013-04-111-1/+1
|\ \ | |/
| * Fix supernumerary 's' in sys._debugmallocstats() output.Antoine Pitrou2013-04-111-1/+1
| |
* | Fix a crash when setting a servername callback on a SSL server socket and ↵Antoine Pitrou2013-04-114-13/+30
| | | | | | | | | | | | | | the client doesn't send a server name. Patch by Kazuhiro Yoshida. (originally issue #8109)
* | #17690: merge with 3.3.Ezio Melotti2013-04-112-15/+7
|\ \ | |/
| * #17690: test_time now works with unittest test discovery. Patch by Zachary ↵Ezio Melotti2013-04-112-15/+7
| | | | | | | | Ware.
* | Fix invalid markup.Georg Brandl2013-04-111-2/+2
| |
* | Merge #14971: Use class method name, not function.__name__, during unittest ↵R David Murray2013-04-113-1/+20
|\ \ | |/ | | | | discovery.
| * #14971: Use class method name, not function.__name__, during unittest discovery.R David Murray2013-04-113-1/+20
| |
* | null mergeSenthil Kumaran2013-04-110-0/+0
|\ \ | |/
| * normalize whitespaceSenthil Kumaran2013-04-111-2/+2
| |
* | normalize whitespace. caught by hookSenthil Kumaran2013-04-111-2/+2
| |
* | merge from 3.3Senthil Kumaran2013-04-111-18/+58
|\ \ | |/ | | | | | | #5609 - test_urllib coverage for url2pathname and pathname2url. Patch contribution by Thomas Fenzl & Maksim Kozyarchuk
| * #5609 - test_urllib coverage for url2pathname and pathname2url. PatchSenthil Kumaran2013-04-111-17/+56
| | | | | | | | contribution by Thomas Fenzl & Maksim Kozyarchuk
* | merge 3.3 (#17669)Benjamin Peterson2013-04-102-1/+3
|\ \ | |/
| * don't run frame if it has no stack (closes #17669)Benjamin Peterson2013-04-102-1/+3
| |
* | Merge heads.Ezio Melotti2013-04-104-0/+109
|\ \
| * \ #12820: merge with 3.3.Ezio Melotti2013-04-104-0/+109
| |\ \ | | |/
| | * #12820: add tests for the xml.dom.minicompat module. Patch by John Chandler ↵Ezio Melotti2013-04-104-0/+109
| | | | | | | | | | | | and Phil Connell.
* | | #17487: wave.getparams now returns a namedtuple.R David Murray2013-04-105-8/+38
|/ / | | | | | | Patch by Claudiu Popa.
* | #17635: merge with 3.3.Ezio Melotti2013-04-101-1/+1
|\ \ | |/
| * #17635: fix wrong function name in multiprocessing docs.Ezio Melotti2013-04-101-1/+1
| |
* | Fix issue #17675: make socket repr() provide local and remote addresses (if ↵Giampaolo Rodola'2013-04-103-9/+40
| | | | | | | | any).