summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* configure.in: s/AC_AIX/AC_USE_SYSTEM_EXTENSIONS/Matthias Klose2010-04-252-3/+2
|
* - configure.in: Replace AC_HELP_STRING with AS_HELP_STRINGMatthias Klose2010-04-252-32/+32
|
* Merged revisions 79786 via svnmerge fromEzio Melotti2010-04-251-70/+72
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79786 | ezio.melotti | 2010-04-05 11:02:54 +0300 (Mon, 05 Apr 2010) | 1 line Fix markup, punctuation and whitespaces in _winreg.rst. ........
* Merged revisions 80150,80460-80461 via svnmerge fromGeorg Brandl2010-04-253-6/+3
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80150 | r.david.murray | 2010-04-17 17:45:38 +0200 (Sa, 17 Apr 2010) | 2 lines Update link to Apple Publication Style guide. ........ r80460 | georg.brandl | 2010-04-25 12:16:00 +0200 (So, 25 Apr 2010) | 1 line #8528: fix typo. ........ r80461 | georg.brandl | 2010-04-25 12:17:27 +0200 (So, 25 Apr 2010) | 1 line #8522: use with statement instead of try-finally for file handling. ........
* Porting commit 80458 to python 3Sean Reifscheider2010-04-251-5/+10
|
* Issue #8524: When creating an SSL socket, the timeout value of theAntoine Pitrou2010-04-243-11/+23
| | | | | original socket wasn't retained (instead, a socket with a positive timeout would be turned into a non-blocking SSL socket).
* Merged revisions 80451-80452 via svnmerge fromAntoine Pitrou2010-04-244-22/+125
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80451 | antoine.pitrou | 2010-04-24 21:57:01 +0200 (sam., 24 avril 2010) | 4 lines The do_handshake() method of SSL objects now adjusts the blocking mode of the SSL structure if necessary (as other methods already do). ........ r80452 | antoine.pitrou | 2010-04-24 22:04:58 +0200 (sam., 24 avril 2010) | 4 lines Issue #5103: SSL handshake would ignore the socket timeout and block indefinitely if the other end didn't respond. ........
* prevent the dict constructor from accepting non-string keyword args #8419Benjamin Peterson2010-04-247-2/+57
| | | | | This adds PyArg_ValidateKeywordArguments, which checks that keyword arguments are all strings, using an optimized method if possible.
* - Issue #8510: Update to autoconf2.65.Matthias Klose2010-04-244-18942/+5142
|
* Fix #5774. Change doc to reflect that some functions have defaults but not ↵Brian Curtin2010-04-241-3/+3
| | | | kwargs.
* Merged revisions 80443 via svnmerge fromMatthias Klose2010-04-243-96/+99
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80443 | matthias.klose | 2010-04-24 18:38:36 +0200 (Sa, 24 Apr 2010) | 2 lines - Issue #8509: Fix quoting in help strings and code snippets in configure.in. ........
* Merged revisions 80439 via svnmerge fromBrian Curtin2010-04-242-57/+132
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80439 | brian.curtin | 2010-04-24 10:40:11 -0500 (Sat, 24 Apr 2010) | 6 lines Fix #7838. Add docstrings and privatize _subprocess implementation details. Since CREATE_NEW_* are used for the creation flags of a subprocess, they were added to __all__. The rest of the previously exposed attributes are now qualified by _subprocess.ATTR rather than importing *. ........
* Merged revisions 80434 via svnmerge fromAntoine Pitrou2010-04-241-16/+19
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80434 | antoine.pitrou | 2010-04-24 12:43:57 +0200 (sam., 24 avril 2010) | 5 lines Make test_makefile_close a networked test (can't read() from a non-connected socket under OS X), and skip it under Windows (where sockets can't be read() from using their fds). ........
* Note: I'm just merging in the additional test.Antoine Pitrou2010-04-231-0/+18
| | | | | | | | | | | | Merged revisions 80428 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80428 | antoine.pitrou | 2010-04-24 01:25:45 +0200 (sam., 24 avril 2010) | 4 lines Issue #5238: Calling makefile() on an SSL object would prevent the underlying socket from being closed until all objects get truely destroyed. ........
* Only the test is merged in.Antoine Pitrou2010-04-231-0/+11
| | | | | | | | | | | | Merged revisions 80423 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80423 | antoine.pitrou | 2010-04-24 00:54:59 +0200 (sam., 24 avril 2010) | 4 lines Issue #7943: Fix circular reference created when instantiating an SSL socket. Initial patch by Péter Szabó. ........
* Fix test_undecodable_env of test_subproces for non-ASCII directoryVictor Stinner2010-04-231-2/+6
| | | | | | | | | | | | | This test was introduced by r80421 (issue #8391). The fix: copy the environment variables instead of starting Python in an empty environement. In an empty environment, the locale is C and Python uses ASCII for the default file system encoding. The non-ASCII directory will be encoded using surrogates, but Python3 is unable to load a module or package with a filename using surrogates. See issue #8242 for more information about running Python3 with a non-ascii directory in an empty environement.
* Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates andVictor Stinner2010-04-235-169/+123
| | | | bytes strings for environment keys and values
* Issue #8495: test_gdb uses replace error handler when decoding utf8 outputVictor Stinner2010-04-232-3/+3
|
* Issue #8467: Pure Python implementation of subprocess encodes the error messageVictor Stinner2010-04-233-3/+27
| | | | using surrogatepass error handler to support surrogates in the message
* added a note about the ignore_dangling_symlinks optionTarek Ziadé2010-04-232-3/+4
|
* make sure os.symlink presence is tested before running some shutil tests -- ↵Tarek Ziadé2010-04-231-56/+59
| | | | also refactored the tests to use unittest.skipUnless
* Issue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't executeVictor Stinner2010-04-232-2/+49
| | | | | indirectly Python signal handlers anymore because mywrite() ignores exceptions (KeyboardInterrupt).
* Issue #8468: bz2.BZ2File() accepts str with surrogates and bytes filenamesVictor Stinner2010-04-232-2/+10
|
* Port of issue8451 to python3: Syslog use sys.argv[0] for ident.Sean Reifscheider2010-04-233-35/+159
|
* Merged revisions 80392 via svnmerge fromAntoine Pitrou2010-04-233-18/+108
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80392 | antoine.pitrou | 2010-04-23 01:33:02 +0200 (ven., 23 avril 2010) | 9 lines Issue #8108: Fix the unwrap() method of SSL objects when the socket has a non-infinite timeout. Also make that method friendlier with applications wanting to continue using the socket in clear-text mode, by disabling OpenSSL's internal readahead. Thanks to Darryl Miles for guidance. Issue #8108: test_ftplib's non-blocking SSL server now has proper handling of SSL shutdowns. ........
* Merged revisions 80388 via svnmerge fromGeorg Brandl2010-04-225-13/+48
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80388 | georg.brandl | 2010-04-23 00:15:33 +0200 (Fr, 23 Apr 2010) | 1 line Add "report a bug" links in some prominent places. Make it clear that doc bugs can be mailed to docs@python.org. Clarify tracker usage. ........
* Fix my previous commit (r80382) for wide build (unicodeobject.c)Victor Stinner2010-04-221-2/+3
|
* Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producingVictor Stinner2010-04-223-47/+93
| | | | unicode string (eg. backslashreplace)
* Merged revisions 80375 via svnmerge fromAntoine Pitrou2010-04-221-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80375 | antoine.pitrou | 2010-04-22 20:00:41 +0200 (jeu., 22 avril 2010) | 3 lines Skip test on old versions of OpenSSL ........
* - Mention _posixsubprocess.c in Modules/Setup.distMatthias Klose2010-04-221-0/+1
|
* Issue #8496: make mailcap.lookup() always return a list, rather than an ↵Antoine Pitrou2010-04-222-1/+4
| | | | | | iterator. Patch by Gregory Nofi.
* Fix mailcap.py built-in test.Antoine Pitrou2010-04-221-4/+2
|
* Merged revisions 80355 via svnmerge fromMartin v. Löwis2010-04-221-1/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80355 | martin.v.loewis | 2010-04-22 13:34:36 +0200 (Do, 22 Apr 2010) | 3 lines Issue #8475: Pass absolute interpreter path to "make html". ........
* Merged revisions 80362 via svnmerge fromSenthil Kumaran2010-04-223-11/+12
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80362 | senthil.kumaran | 2010-04-22 17:40:13 +0530 (Thu, 22 Apr 2010) | 4 lines Changed tests to only urlparse one, which was enough, addressed Ezio's comment on Invalid url check statement and versionchanged string in docs. ........
* Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,Victor Stinner2010-04-228-151/+104
| | | | you have to convert your bytearray filenames to bytes
* Merged revisions 80357 via svnmerge fromEzio Melotti2010-04-221-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80357 | ezio.melotti | 2010-04-22 14:53:21 +0300 (Thu, 22 Apr 2010) | 1 line Rephrase comment. ........
* Merged revisions 80350 via svnmerge fromEzio Melotti2010-04-221-5/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80350 | ezio.melotti | 2010-04-22 14:23:31 +0300 (Thu, 22 Apr 2010) | 1 line #8474: fix duplicate test in test_email. ........
* Issue #8195: Fix a crash in sqlite Connection.create_collation() if theVictor Stinner2010-04-223-5/+22
| | | | collation name contains a surrogate character.
* Fixing a note on encoding declaration, its usage in urlopen based on reviewSenthil Kumaran2010-04-221-17/+24
| | | | comments from RDM and Ezio.
* Typo fixes.Georg Brandl2010-04-221-7/+8
|
* Fix indentation.Georg Brandl2010-04-221-2/+2
|
* Merged revisions 80336 via svnmerge fromSenthil Kumaran2010-04-221-5/+17
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80336 | senthil.kumaran | 2010-04-22 11:18:35 +0530 (Thu, 22 Apr 2010) | 3 lines Updated the RFCs list in the See Also section of urlparse.rst ........
* #7347 entry got entered in the wrong spot.Brian Curtin2010-04-221-3/+3
|
* Fix verb tense in skip message.R. David Murray2010-04-221-1/+1
|
* Add a note about #7347.Brian Curtin2010-04-221-0/+3
|
* Merged revisions 80155 via svnmerge fromR. David Murray2010-04-221-0/+2
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80155 | r.david.murray | 2010-04-17 17:59:26 -0400 (Sat, 17 Apr 2010) | 5 lines Issue #8263: On freebsd6 the unittest 'break' test stops regrtest; skip it. This is presumably related to issue 3864, and appears to be due to a platform bug on freebsd6. ........
* Port #7347 to py3k.Brian Curtin2010-04-213-38/+390
| | | | Add CreateKeyEx and DeleteKeyEx, along with test improvements.
* Add myself to email, move 'windows' to Platforms where itR. David Murray2010-04-211-3/+3
| | | | belongs, and finish alphabetizing the Platforms list.
* Add myself to ssl, although I'm not a de facto maintainer or expertAntoine Pitrou2010-04-211-1/+1
|
* Merged revisions 80325 via svnmerge fromAntoine Pitrou2010-04-213-16/+10
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80325 | antoine.pitrou | 2010-04-22 00:53:29 +0200 (jeu., 22 avril 2010) | 6 lines Issue #7332: Remove the 16KB stack-based buffer in PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable benefit compared to the dynamic memory allocation fallback. Patch by Charles-François Natali. ........