summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* (Merge 3.2) Issue #9756: When calling a method descriptor or a slot wrapperVictor Stinner2011-05-013-3/+27
|\ | | | | | | | | | | descriptor, the check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type).
| * (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapperVictor Stinner2011-05-013-3/+27
| |\ | | | | | | | | | | | | | | | descriptor, the check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type).
| | * Issue #9756: When calling a method descriptor or a slot wrapper descriptor, theVictor Stinner2011-05-013-3/+27
| | | | | | | | | | | | | | | | | | check of the object type doesn't read the __class__ attribute anymore. Fix a crash if a class override its __class__ attribute (e.g. a proxy of the str type).
* | | regrtest: add the name of the failing test on a child error (-j option)Victor Stinner2011-05-011-1/+1
| | |
* | | merge with 3.2Georg Brandl2011-05-011-2/+1
|\ \ \ | |/ /
| * | Split combined code/doctest code blocks in two blocks, to enable proper ↵Georg Brandl2011-05-011-2/+5
| | | | | | | | | | | | highlighting.
* | | Split combined code/doctest code blocks in two blocks, to enable proper ↵Georg Brandl2011-05-011-0/+4
| | | | | | | | | | | | highlighting.
* | | Merge #11971: fix man page; it's -OO not -O0R David Murray2011-05-011-2/+2
|\ \ \ | |/ / | | | | | | Patch by Lars Michelsen.
| * | Merge #11971: fix man page; it's -OO not -O0R David Murray2011-05-011-2/+2
| |\ \ | | |/ | | | | | | Patch by Lars Michelsen.
| | * #11971: fix man page; it's -OO not -O0R David Murray2011-05-011-2/+2
| | | | | | | | | | | | Patch by Lars Michelsen.
* | | Close #11958: Fix FTP tests for IPv6, bind to "::1" instead of "localhost".Victor Stinner2011-04-302-7/+5
| | | | | | | | | | | | Patch written by Charles-Francois Natali.
* | | Merge #11883: fix email examples by adding 'localhost' to SMTP constructor callsR David Murray2011-04-303-3/+3
|\ \ \ | |/ /
| * | Merge #11883: fix email examples by adding 'localhost' to SMTP constructor callsR David Murray2011-04-303-3/+3
| |\ \ | | |/
| | * #11883: fix email examples by adding 'localhost' to SMTP constructor callsR David Murray2011-04-303-3/+3
| | |
* | | Merge #11883: replace incorrect call to sendmail with correct call to ↵R David Murray2011-04-301-1/+1
|\ \ \ | |/ / | | | | | | send_message
| * | #11883: replace incorrect call to sendmail with correct call to send_messageR David Murray2011-04-301-1/+1
| | |
* | | Fix test.Ezio Melotti2011-04-301-1/+1
| | |
* | | Improved test coverage.Vinay Sajip2011-04-301-4/+105
| | |
* | | Updated usage of boolean values.Vinay Sajip2011-04-301-7/+7
| | |
* | | Updated usage of boolean values.Vinay Sajip2011-04-301-5/+5
| | |
* | | Merge #11901: post-commit review fixes per Georg BrandlR David Murray2011-04-301-7/+7
|\ \ \ | |/ /
| * | Merge #11901: post-commit review fixes per Georg BrandlR David Murray2011-04-301-7/+7
| |\ \ | | |/
| | * #11901: post-commit review fixes per Georg BrandlR David Murray2011-04-301-7/+7
| | |
* | | merge 3.2Benjamin Peterson2011-04-301-1/+1
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2011-04-301-1/+1
| |\ \ | | |/
| | * fix function name in example (closes #11966)Benjamin Peterson2011-04-301-1/+1
| | |
* | | Fix indentation.Georg Brandl2011-04-301-2/+2
| | |
* | | Issue #8407, issue #11859: Add signal.pthread_sigmask() function to fetchVictor Stinner2011-04-306-6/+262
| | | | | | | | | | | | | | | | | | | | | | | | | | | and/or change the signal mask of the calling thread. Fix also tests of test_io using threads and an alarm: use pthread_sigmask() to ensure that the SIGALRM signal is received by the main thread. Original patch written by Jean-Paul Calderone.
* | | Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-3013-108/+119
| | |
* | | Merge 3.2: ignore commits (already done in 3.3 previously)Victor Stinner2011-04-300-0/+0
|\ \ \ | |/ /
| * | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-265-15/+43
| | | | | | | | | | | | | | | | | | | | | subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure.
| * | Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0)Victor Stinner2011-04-261-1/+1
| | | | | | | | | | | | | | | ... instead of PyErr_Print() because we don't need to set sys attributes, the sys module is destroyed just after printing the error.
* | | Merged mentions of issues #11324 and #11858.Łukasz Langa2011-04-301-0/+5
|\ \ \ | |/ / | | | | | | Possibly redundant once 3.2.1 is out.
| * | Mentioned issues #11324 and #11858.Łukasz Langa2011-04-301-0/+5
| | |
* | | Fix #11961. Document STARTUPINFO and creation flag options.Brian Curtin2011-04-301-3/+107
|\ \ \ | |/ /
| * | Fix #11961. Document STARTUPINFO and creation flag options.Brian Curtin2011-04-301-3/+107
| |\ \ | | |/
| | * whitespace...Brian Curtin2011-04-301-3/+3
| | |
| | * Fix #11961. Document STARTUPINFO and creation flag options.Brian Curtin2011-04-301-3/+98
| | |
* | | Wrap the correct test with the skip decorator for the issue10761.Senthil Kumaran2011-04-291-1/+2
|\ \ \ | |/ / | | | | | | merge from 3.2.
| * | merge from 3.1Senthil Kumaran2011-04-291-1/+2
| |\ \ | | |/
| | * Wrap the testskip decorator for the proper test to resolve bb failure.Senthil Kumaran2011-04-291-1/+1
| | |
* | | whitespace fixBrian Curtin2011-04-291-1/+1
| | |
* | | mergeBrian Curtin2011-04-291-2/+9
|\ \ \ | |/ /
| * | mergeBrian Curtin2011-04-291-2/+9
| |\ \ | | |/
| | * Further fix #7838. CREATE_NEW_CONSOLE was exposed, but none of theBrian Curtin2011-04-291-2/+9
| | | | | | | | | | | | constants to be used for STARTUPINFO were exposed due to the change.
* | | Merged minor cleanups from 3.2.Łukasz Langa2011-04-292-3/+1
|\ \ \ | |/ /
| * | Removed debugging leftovers.Łukasz Langa2011-04-291-2/+0
| | |
| * | __class__ of a __class__ check worked only by chance.Łukasz Langa2011-04-291-1/+1
| | |
* | | Small grammar fix.Georg Brandl2011-04-291-2/+2
| | |
* | | Empty merge for TestChainMap tweaks in 3.2Łukasz Langa2011-04-290-0/+0
|\ \ \ | |/ /