summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge: #5713: fix timing issue in smtplib tests.R David Murray2013-03-201-0/+3
|\
| * Merge: #5713: fix timing issue in smtplib tests.R David Murray2013-03-201-0/+3
| |\
| | * #5713: fix timing issue in smtplib tests.R David Murray2013-03-201-0/+3
| | |
* | | mergeGregory P. Smith2013-03-202-9/+6
|\ \ \ | |/ /
| * | mergeGregory P. Smith2013-03-202-9/+6
| |\ \ | | |/
| | * remove the long obsolete mention of universal newlines mode only beingGregory P. Smith2013-03-202-9/+6
| | | | | | | | | | | | available when configured at compile time.
* | | Merge: #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-203-11/+80
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
| * | Merge: #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-203-11/+80
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
| | * #5713: Handle 421 error codes during sendmail by closing the socket.R David Murray2013-03-203-3/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | This is a partial fix to the issue of servers disconnecting unexpectedly; in this case the 421 says they are disconnecting, so we close the socket and return the 421 in the appropriate error context. Original patch by Mark Sapiro, updated by Kushal Das, with additional tests by me.
* | | Issue #16475 : Correctly handle the EOF when reading marshal streams.Kristján Valur Jónsson2013-03-202-9/+14
| | |
* | | Issue #16475: Simplify the interface to r_ref_allocate and improve comments.Kristján Valur Jónsson2013-03-201-26/+33
| | |
* | | - Merge 3.3 (.hgtouch)doko@ubuntu.com2013-03-201-0/+3
|\ \ \ | |/ /
| * | - .hgtouch: Add dependencies for GRAMMAR_H and GRAMMAR_Cdoko@ubuntu.com2013-03-201-0/+3
| | |
* | | Issue #16997: unittest.TestCase now provides a subTest() context manager to ↵Antoine Pitrou2013-03-2010-105/+539
| | | | | | | | | | | | procedurally generate, in an easy way, small test instances.
* | | #17493: merge with 3.3.Ezio Melotti2013-03-201-11/+9
|\ \ \ | |/ /
| * | #17493: merge with 3.2.Ezio Melotti2013-03-201-11/+9
| |\ \ | | |/
| | * #17493: re-enable a test on Windows. Patch by Zachary Ware.Ezio Melotti2013-03-201-11/+9
| | |
* | | Merge usage of argument/parameter and markup fixes from 3.3.Ezio Melotti2013-03-201-4/+4
|\ \ \ | |/ /
| * | Merge usage of argument/parameter and markup fixes from 3.2.Ezio Melotti2013-03-201-4/+4
| |\ \ | | |/
| | * Fix usage of argument/parameter and markup.Ezio Melotti2013-03-201-4/+4
| | |
* | | clarifiy the documentation for issue17285. see also commitGregory P. Smith2013-03-191-1/+1
|\ \ \ | |/ / | | | | | | ee30400efceb which updated the docstring.
| * | clarifiy the documentation for issue17285. see also commitGregory P. Smith2013-03-191-1/+1
| | | | | | | | | | | | ee30400efceb which updated the docstring.
* | | Use a larger amount of data for tests such as the interrupted_writeGregory P. Smith2013-03-192-5/+8
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | tests that depend on filling up an OS pipe so that they work properly on systems configured with large pipe buffers. Also a subprocess docstring update that i forgot was in my client when i did the original 3.3 commit... easier to just leave that in here with this one than go back and undo/redo.
| * | Use a larger amount of data for tests such as the interrupted_writeGregory P. Smith2013-03-192-5/+8
| | | | | | | | | | | | | | | tests that depend on filling up an OS pipe so that they work properly on systems configured with large pipe buffers.
* | | fix compiler warningBenjamin Peterson2013-03-201-1/+1
| | |
* | | Backed out changeset 521232b05b97Benjamin Peterson2013-03-203-267/+243
| | |
* | | fix compiler warningBenjamin Peterson2013-03-193-243/+267
| | |
* | | null merge.Senthil Kumaran2013-03-190-0/+0
|\ \ \ | |/ /
| * | Automated merge with file:///Users/skumaran/python/cpythonSenthil Kumaran2013-03-191-8/+8
| |\ \
* | \ \ Automated merge with ssh://hg.python.org/cpythonSenthil Kumaran2013-03-191-0/+5
|\ \ \ \
| * \ \ \ #17474 - merge from 3.3. Update default Docs with versionchanged markup on ↵Senthil Kumaran2013-03-191-0/+5
| |\ \ \ \ | | | |/ / | | |/| | | | | | | what's removed
| | * | | #17474 - Mark the deprecated Request methods as deprecated-removed. Review ↵Senthil Kumaran2013-03-191-8/+8
| | | | | | | | | | | | | | | | | | | | by Ezio Melotti
* | | | | Use logic operator, not bitwise operator, for conditional.R David Murray2013-03-201-1/+1
| | | | |
* | | | | #17485: Delete the Content-Length header if the data attribute is deleted.R David Murray2013-03-204-3/+16
| | | | | | | | | | | | | | | | | | | | This is a follow on to issue 16464. Original patch by Daniel Wozniak.
* | | | | Merge with 3.3Kristján Valur Jónsson2013-03-190-0/+0
|\ \ \ \ \ | | |_|/ / | |/| | |
| * | | | Issue #15038 : Fixing the condition broadcast and docs.Kristján Valur Jónsson2013-03-191-6/+6
| | |/ / | |/| |
* | | | Issue #15038 : Fixing the condition broadcast and docs.Kristján Valur Jónsson2013-03-191-6/+6
| | | |
* | | | Issue #16475: Support object instancing, recursion and interned stringsKristján Valur Jónsson2013-03-195-32/+376
| | | | | | | | | | | | | | | | in marshal
* | | | #15927: Fix cvs.reader parsing of escaped \r\n with quoting off.R David Murray2013-03-194-1/+25
| |/ / |/| | | | | | | | | | | | | | | | | This fix means that such values are correctly roundtripped, since cvs.writer already does the correct escaping. Patch by Michael Johnson.
* | | Closes issue 17467. Add readline and readlines support to ↵Michael Foord2013-03-194-8/+141
| | | | | | | | | | | | unittest.mock.mock_open
* | | #17471: merge from 3.3Senthil Kumaran2013-03-191-0/+2
|\ \ \ | |/ /
| * | #17471 - merge from 3.2Senthil Kumaran2013-03-191-1/+7
| |\ \ | | |/
| | * #17471 - Increasing the urllib.error test coverage. Bringing it to 100%. ↵Senthil Kumaran2013-03-191-1/+9
| | | | | | | | | | | | Based on patch contributed by Daniel Wozniak
* | | Issue #13248: removed deprecated and undocumented difflib.isbjunk, isbpopular.Terry Jan Reedy2013-03-191-14/+0
| | |
* | | Merge with 3.3Kristján Valur Jónsson2013-03-190-0/+0
|\ \ \ | |/ /
| * | Merge with 3.2Kristján Valur Jónsson2013-03-190-0/+0
| |\ \ | | |/
* | | Merge with 3.3Kristján Valur Jónsson2013-03-190-0/+0
|\ \ \ | |/ /
| * | MergeKristján Valur Jónsson2013-03-191-0/+5
| |\ \
* | \ \ Merge with 3.2Kristján Valur Jónsson2013-03-190-0/+0
|\ \ \ \ | | |_|/ | |/| |
| * | | MergeKristján Valur Jónsson2013-03-191-0/+5
| |\ \ \