- 19 Mar, 2013 4 commits
-
-
R David Murray authored
In Python2 Popen uses *FILE objects, which wind up buffering even though subprocess defaults to no buffering. In Python3, subprocess streams really are unbuffered by default, but the imaplib code assumes read is buffered. This patch uses the default buffer size from the io module to get buffered streams from Popen. Much debugging work and patch by Diane Trout. The imap protocol is too complicated to write a test for this simple change with our current level of test infrastructure.
-
Serhiy Storchaka authored
-
Senthil Kumaran authored
-
R David Murray authored
This fixes a regression relative to Python2. (In 2, methods on a class were unbound methods and matched the inspect queries being done, in 3 they are just functions and so were missed). This is an undocumented function that pydoc itself does not use, but I found that numpy at least uses it in its documentation generator. Original patch by Matt Bachmann.
-
- 18 Mar, 2013 2 commits
-
-
R David Murray authored
Patch by Rafael Santos.
-
R David Murray authored
Original patch by Kushal Das.
-
- 17 Mar, 2013 2 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
the sentence referred to. Make other minor edits to improve flow.
-
- 16 Mar, 2013 8 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
caching of compiled regular expressions.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Ezio Melotti authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
R David Murray authored
Initial patch contributed by Edmond Burnett.
-
- 15 Mar, 2013 2 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 14 Mar, 2013 2 commits
-
-
Serhiy Storchaka authored
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
-
Terry Jan Reedy authored
If PYTHON is undefined, this fails without the launcher (installed with 3.3 or from PyPI), but this is better than always failing. Patch from Zachary Ware.
-
- 13 Mar, 2013 2 commits
-
-
Senthil Kumaran authored
-
Ezio Melotti authored
-
- 12 Mar, 2013 2 commits
-
-
Ezio Melotti authored
#17368: Fix an off-by-one error in the Python JSON decoder that caused a failure while decoding empty object literals when object_pairs_hook was specified.
-
Eli Bendersky authored
-
- 11 Mar, 2013 5 commits
-
-
Terry Jan Reedy authored
as reported by Serhiy Storchaka and Matthew Barnett.
-
Terry Jan Reedy authored
as reported by Serhiy Storchaka and Matthew Barnett.
-
Terry Jan Reedy authored
found by Serhiy Storchaka and Matthew Barnett
-
Ezio Melotti authored
-
Ezio Melotti authored
-
- 10 Mar, 2013 1 commit
-
-
Ezio Melotti authored
-
- 09 Mar, 2013 3 commits
-
-
Ezio Melotti authored
-
Eli Bendersky authored
-
Terry Jan Reedy authored
-
- 08 Mar, 2013 2 commits
-
-
Vinay Sajip authored
-
Eli Bendersky authored
Document that ctypes automatically applies byref() when argtypes declares POINTER.
-
- 07 Mar, 2013 4 commits
-
-
R David Murray authored
-
R David Murray authored
Previously the parts of the message retained whatever linesep they had on read, which means if the messages weren't read in univeral newline mode, the line endings could well be inconsistent. In general sending it via smtplib would result in them getting fixed, but it is better to generate them correctly to begin with. Also, the new send_message method of smtplib does not do the fixup, so that method is producing rfc-invalid output without this fix.
-
Ezio Melotti authored
-
Ezio Melotti authored
#11732: add a new suppress_crash_popup() context manager to test.support that disables crash popups on Windows and use it in test_ctypes.
-
- 06 Mar, 2013 1 commit
-
-
Eli Bendersky authored
-