]> granicus.if.org Git - python/log
python
14 years agoMakefile.pre.in (autoconf): Call autoconf/autoheader with -Wall (issue #8510).
Matthias Klose [Sun, 25 Apr 2010 21:23:32 +0000 (21:23 +0000)]
Makefile.pre.in (autoconf): Call autoconf/autoheader with -Wall (issue #8510).

14 years agoconfigure.in: Avoid autoconf warning: Assume C89 semantics that
Matthias Klose [Sun, 25 Apr 2010 21:18:48 +0000 (21:18 +0000)]
configure.in: Avoid autoconf warning: Assume C89 semantics that
RETSIGTYPE is always void (issue #8510).

14 years agoadd versionadded
Benjamin Peterson [Sun, 25 Apr 2010 21:03:34 +0000 (21:03 +0000)]
add versionadded

14 years agoconfigure.in: convert all obsolete AC_TRY_* macros to AC_*_IFELSE,
Matthias Klose [Sun, 25 Apr 2010 21:00:44 +0000 (21:00 +0000)]
configure.in: convert all obsolete AC_TRY_* macros to AC_*_IFELSE,
only whitespace changes in generated configure (diff -uEwB).

14 years agoMerged revisions 80476 via svnmerge from
Michael Foord [Sun, 25 Apr 2010 19:53:49 +0000 (19:53 +0000)]
Merged revisions 80476 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80476 | michael.foord | 2010-04-25 20:02:46 +0100 (Sun, 25 Apr 2010) | 1 line

  Adding unittest.removeHandler function / decorator for removing the signal.SIGINT signal handler. With tests and docs.
........

14 years agoconfigure.in: s/AC_AIX/AC_USE_SYSTEM_EXTENSIONS/
Matthias Klose [Sun, 25 Apr 2010 18:43:42 +0000 (18:43 +0000)]
configure.in: s/AC_AIX/AC_USE_SYSTEM_EXTENSIONS/

14 years ago- configure.in: Replace AC_HELP_STRING with AS_HELP_STRING
Matthias Klose [Sun, 25 Apr 2010 18:34:36 +0000 (18:34 +0000)]
- configure.in: Replace AC_HELP_STRING with AS_HELP_STRING

14 years agoMerged revisions 79786 via svnmerge from
Ezio Melotti [Sun, 25 Apr 2010 17:48:01 +0000 (17:48 +0000)]
Merged revisions 79786 via svnmerge from
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.
........

14 years agoMerged revisions 80150,80460-80461 via svnmerge from
Georg Brandl [Sun, 25 Apr 2010 10:19:53 +0000 (10:19 +0000)]
Merged revisions 80150,80460-80461 via svnmerge from
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.
........

14 years agoPorting commit 80458 to python 3
Sean Reifscheider [Sun, 25 Apr 2010 06:31:55 +0000 (06:31 +0000)]
Porting commit 80458 to python 3

14 years agoIssue #8524: When creating an SSL socket, the timeout value of the
Antoine Pitrou [Sat, 24 Apr 2010 22:04:40 +0000 (22:04 +0000)]
Issue #8524: When creating an SSL socket, the timeout value of the
original socket wasn't retained (instead, a socket with a positive timeout
would be turned into a non-blocking SSL socket).

14 years agoMerged revisions 80451-80452 via svnmerge from
Antoine Pitrou [Sat, 24 Apr 2010 21:26:44 +0000 (21:26 +0000)]
Merged revisions 80451-80452 via svnmerge from
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.
........

14 years agoprevent the dict constructor from accepting non-string keyword args #8419
Benjamin Peterson [Sat, 24 Apr 2010 18:21:17 +0000 (18:21 +0000)]
prevent the dict constructor from accepting non-string keyword args #8419

This adds PyArg_ValidateKeywordArguments, which checks that keyword arguments
are all strings, using an optimized method if possible.

14 years ago- Issue #8510: Update to autoconf2.65.
Matthias Klose [Sat, 24 Apr 2010 17:59:49 +0000 (17:59 +0000)]
- Issue #8510: Update to autoconf2.65.

14 years agoFix #5774. Change doc to reflect that some functions have defaults but not kwargs.
Brian Curtin [Sat, 24 Apr 2010 17:21:31 +0000 (17:21 +0000)]
Fix #5774. Change doc to reflect that some functions have defaults but not kwargs.

14 years agoMerged revisions 80443 via svnmerge from
Matthias Klose [Sat, 24 Apr 2010 17:04:35 +0000 (17:04 +0000)]
Merged revisions 80443 via svnmerge from
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.
........

14 years agoMerged revisions 80439 via svnmerge from
Brian Curtin [Sat, 24 Apr 2010 16:19:22 +0000 (16:19 +0000)]
Merged revisions 80439 via svnmerge from
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 *.
........

14 years agoMerged revisions 80434 via svnmerge from
Antoine Pitrou [Sat, 24 Apr 2010 11:13:53 +0000 (11:13 +0000)]
Merged revisions 80434 via svnmerge from
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).
........

14 years agoNote: I'm just merging in the additional test.
Antoine Pitrou [Fri, 23 Apr 2010 23:31:47 +0000 (23:31 +0000)]
Note: I'm just merging in the additional test.

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.
........

14 years agoOnly the test is merged in.
Antoine Pitrou [Fri, 23 Apr 2010 23:10:32 +0000 (23:10 +0000)]
Only the test is merged in.

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ó.
........

14 years agoFix test_undecodable_env of test_subproces for non-ASCII directory
Victor Stinner [Fri, 23 Apr 2010 22:55:39 +0000 (22:55 +0000)]
Fix test_undecodable_env of test_subproces for non-ASCII directory

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.

14 years agoIssue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and
Victor Stinner [Fri, 23 Apr 2010 21:41:56 +0000 (21:41 +0000)]
Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and
bytes strings for environment keys and values

14 years agoIssue #8495: test_gdb uses replace error handler when decoding utf8 output
Victor Stinner [Fri, 23 Apr 2010 20:33:55 +0000 (20:33 +0000)]
Issue #8495: test_gdb uses replace error handler when decoding utf8 output

14 years agoIssue #8467: Pure Python implementation of subprocess encodes the error message
Victor Stinner [Fri, 23 Apr 2010 19:28:32 +0000 (19:28 +0000)]
Issue #8467: Pure Python implementation of subprocess encodes the error message
using surrogatepass error handler to support surrogates in the message

14 years agoadded a note about the ignore_dangling_symlinks option
Tarek Ziadé [Fri, 23 Apr 2010 13:03:50 +0000 (13:03 +0000)]
added a note about the ignore_dangling_symlinks option

14 years agomake sure os.symlink presence is tested before running some shutil tests -- also...
Tarek Ziadé [Fri, 23 Apr 2010 13:03:09 +0000 (13:03 +0000)]
make sure os.symlink presence is tested before running some shutil tests -- also refactored the tests to use unittest.skipUnless

14 years agoIssue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't execute
Victor Stinner [Fri, 23 Apr 2010 12:02:30 +0000 (12:02 +0000)]
Issue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't execute
indirectly Python signal handlers anymore because mywrite() ignores exceptions
(KeyboardInterrupt).

14 years agoIssue #8468: bz2.BZ2File() accepts str with surrogates and bytes filenames
Victor Stinner [Fri, 23 Apr 2010 10:56:17 +0000 (10:56 +0000)]
Issue #8468: bz2.BZ2File() accepts str with surrogates and bytes filenames

14 years agoPort of issue8451 to python3: Syslog use sys.argv[0] for ident.
Sean Reifscheider [Fri, 23 Apr 2010 09:29:52 +0000 (09:29 +0000)]
Port of issue8451 to python3: Syslog use sys.argv[0] for ident.

14 years agoMerged revisions 80392 via svnmerge from
Antoine Pitrou [Fri, 23 Apr 2010 00:16:21 +0000 (00:16 +0000)]
Merged revisions 80392 via svnmerge from
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.
........

14 years agoMerged revisions 80388 via svnmerge from
Georg Brandl [Thu, 22 Apr 2010 23:20:19 +0000 (23:20 +0000)]
Merged revisions 80388 via svnmerge from
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.
........

14 years agoFix my previous commit (r80382) for wide build (unicodeobject.c)
Victor Stinner [Thu, 22 Apr 2010 20:01:57 +0000 (20:01 +0000)]
Fix my previous commit (r80382) for wide build (unicodeobject.c)

14 years agoIssue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing
Victor Stinner [Thu, 22 Apr 2010 19:38:16 +0000 (19:38 +0000)]
Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing
unicode string (eg. backslashreplace)

14 years agoMerged revisions 80375 via svnmerge from
Antoine Pitrou [Thu, 22 Apr 2010 18:43:31 +0000 (18:43 +0000)]
Merged revisions 80375 via svnmerge from
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
........

14 years ago- Mention _posixsubprocess.c in Modules/Setup.dist
Matthias Klose [Thu, 22 Apr 2010 13:38:12 +0000 (13:38 +0000)]
- Mention _posixsubprocess.c in Modules/Setup.dist

14 years agoIssue #8496: make mailcap.lookup() always return a list, rather than an iterator.
Antoine Pitrou [Thu, 22 Apr 2010 13:30:10 +0000 (13:30 +0000)]
Issue #8496: make mailcap.lookup() always return a list, rather than an iterator.
Patch by Gregory Nofi.

14 years agoFix mailcap.py built-in test.
Antoine Pitrou [Thu, 22 Apr 2010 13:19:31 +0000 (13:19 +0000)]
Fix mailcap.py built-in test.

14 years agoMerged revisions 80355 via svnmerge from
Martin v. Löwis [Thu, 22 Apr 2010 13:16:44 +0000 (13:16 +0000)]
Merged revisions 80355 via svnmerge from
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".
........

14 years agoMerged revisions 80362 via svnmerge from
Senthil Kumaran [Thu, 22 Apr 2010 12:19:46 +0000 (12:19 +0000)]
Merged revisions 80362 via svnmerge from
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.
........

14 years agoIssue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,
Victor Stinner [Thu, 22 Apr 2010 12:08:36 +0000 (12:08 +0000)]
Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore,
you have to convert your bytearray filenames to bytes

14 years agoMerged revisions 80357 via svnmerge from
Ezio Melotti [Thu, 22 Apr 2010 11:57:12 +0000 (11:57 +0000)]
Merged revisions 80357 via svnmerge from
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.
........

14 years agoMerged revisions 80350 via svnmerge from
Ezio Melotti [Thu, 22 Apr 2010 11:29:27 +0000 (11:29 +0000)]
Merged revisions 80350 via svnmerge from
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.
........

14 years agoIssue #8195: Fix a crash in sqlite Connection.create_collation() if the
Victor Stinner [Thu, 22 Apr 2010 11:23:23 +0000 (11:23 +0000)]
Issue #8195: Fix a crash in sqlite Connection.create_collation() if the
collation name contains a surrogate character.

14 years agoFixing a note on encoding declaration, its usage in urlopen based on review
Senthil Kumaran [Thu, 22 Apr 2010 10:53:30 +0000 (10:53 +0000)]
Fixing a note on encoding declaration, its usage in urlopen based on review
comments from RDM and Ezio.

14 years agoTypo fixes.
Georg Brandl [Thu, 22 Apr 2010 07:02:51 +0000 (07:02 +0000)]
Typo fixes.

14 years agoFix indentation.
Georg Brandl [Thu, 22 Apr 2010 07:00:42 +0000 (07:00 +0000)]
Fix indentation.

14 years agoMerged revisions 80336 via svnmerge from
Senthil Kumaran [Thu, 22 Apr 2010 05:53:18 +0000 (05:53 +0000)]
Merged revisions 80336 via svnmerge from
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
........

14 years ago#7347 entry got entered in the wrong spot.
Brian Curtin [Thu, 22 Apr 2010 01:52:50 +0000 (01:52 +0000)]
#7347 entry got entered in the wrong spot.

14 years agoFix verb tense in skip message.
R. David Murray [Thu, 22 Apr 2010 01:49:37 +0000 (01:49 +0000)]
Fix verb tense in skip message.

14 years agoAdd a note about #7347.
Brian Curtin [Thu, 22 Apr 2010 01:07:36 +0000 (01:07 +0000)]
Add a note about #7347.

14 years agoMerged revisions 80155 via svnmerge from
R. David Murray [Thu, 22 Apr 2010 00:53:47 +0000 (00:53 +0000)]
Merged revisions 80155 via svnmerge from
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.
........

14 years agoPort #7347 to py3k.
Brian Curtin [Wed, 21 Apr 2010 23:56:21 +0000 (23:56 +0000)]
Port #7347 to py3k.

Add CreateKeyEx and DeleteKeyEx, along with test improvements.

14 years agoAdd myself to email, move 'windows' to Platforms where it
R. David Murray [Wed, 21 Apr 2010 23:05:10 +0000 (23:05 +0000)]
Add myself to email, move 'windows' to Platforms where it
belongs, and finish alphabetizing the Platforms list.

14 years agoAdd myself to ssl, although I'm not a de facto maintainer or expert
Antoine Pitrou [Wed, 21 Apr 2010 22:59:01 +0000 (22:59 +0000)]
Add myself to ssl, although I'm not a de facto maintainer or expert

14 years agoMerged revisions 80325 via svnmerge from
Antoine Pitrou [Wed, 21 Apr 2010 22:56:22 +0000 (22:56 +0000)]
Merged revisions 80325 via svnmerge from
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.
........

14 years agoIssue #8380: Port gdb/libpython to 3.x.
Martin v. Löwis [Wed, 21 Apr 2010 22:38:42 +0000 (22:38 +0000)]
Issue #8380: Port gdb/libpython to 3.x.

14 years agoMerged revisions 80322 via svnmerge from
Matthias Klose [Wed, 21 Apr 2010 22:21:03 +0000 (22:21 +0000)]
Merged revisions 80322 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80322 | matthias.klose | 2010-04-22 00:18:52 +0200 (Do, 22 Apr 2010) | 2 lines

  - Build the ossaudio extension on GNU/kFreeBSD.
........

14 years agoMerged revisions 80320 via svnmerge from
Matthias Klose [Wed, 21 Apr 2010 21:47:45 +0000 (21:47 +0000)]
Merged revisions 80320 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80320 | matthias.klose | 2010-04-21 23:45:30 +0200 (Mi, 21 Apr 2010) | 2 lines

  setup.py: search ffi.h in include dirs, if LIBFFI_INCLUDEDIR is empty.
........

14 years agoMerged revisions 80314-80315 via svnmerge from
Antoine Pitrou [Wed, 21 Apr 2010 19:46:23 +0000 (19:46 +0000)]
Merged revisions 80314-80315 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80314 | antoine.pitrou | 2010-04-21 21:28:03 +0200 (mer., 21 avril 2010) | 5 lines

  Issue #8484: Load all ciphers and digest algorithms when initializing
  the _ssl extension, such that verification of some SSL certificates
  doesn't fail because of an "unknown algorithm".
........
  r80315 | antoine.pitrou | 2010-04-21 21:36:23 +0200 (mer., 21 avril 2010) | 3 lines

  Forgot to add the sample certificate (followup to r80314)
........

14 years agoUpdate NEWS file accoding to my last patch (r80311 about gdb)
Victor Stinner [Wed, 21 Apr 2010 13:55:23 +0000 (13:55 +0000)]
Update NEWS file accoding to my last patch (r80311 about gdb)

Move test_gdb issues to the Tests section.

14 years agoAdapt libpython.py and test_gdb.py to Python3
Victor Stinner [Wed, 21 Apr 2010 13:53:05 +0000 (13:53 +0000)]
Adapt libpython.py and test_gdb.py to Python3

 * Rename PyStringObjectPtr to PyBytesObjectPtr
 * Replace PyObject_Print by textiowrapper_write

14 years agoMerged revisions 80306 via svnmerge from
Tarek Ziadé [Wed, 21 Apr 2010 13:35:21 +0000 (13:35 +0000)]
Merged revisions 80306 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80306 | tarek.ziade | 2010-04-21 15:32:26 +0200 (Wed, 21 Apr 2010) | 1 line

  shutil: removed unused import and fixed attributes names in _call_external_zip
........

14 years agofixed typo
Tarek Ziadé [Wed, 21 Apr 2010 07:30:43 +0000 (07:30 +0000)]
fixed typo

14 years agoMerged revisions 80301 via svnmerge from
Martin v. Löwis [Wed, 21 Apr 2010 06:38:30 +0000 (06:38 +0000)]
Merged revisions 80301 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80301 | martin.v.loewis | 2010-04-21 08:37:48 +0200 (Mi, 21 Apr 2010) | 2 lines

  Add Tim Golden.
........

14 years agoMerged revisions 79986-79987,80156 via svnmerge from
Martin v. Löwis [Wed, 21 Apr 2010 06:05:58 +0000 (06:05 +0000)]
Merged revisions 79986-79987,80156 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79986 | martin.v.loewis | 2010-04-12 07:18:16 +0200 (Mo, 12 Apr 2010) | 2 lines

  Issue #8330: Fix expected output in test_gdb.
........
  r79987 | martin.v.loewis | 2010-04-12 07:22:25 +0200 (Mo, 12 Apr 2010) | 2 lines

  Re-enable all tests, to see which ones fail on the buildbots.
........
  r80156 | martin.v.loewis | 2010-04-18 00:40:40 +0200 (So, 18 Apr 2010) | 2 lines

  Issue #8279: Fix test_gdb failures.
........

14 years agoMerged revisions 80298 via svnmerge from
Ronald Oussoren [Wed, 21 Apr 2010 06:01:23 +0000 (06:01 +0000)]
Merged revisions 80298 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80298 | ronald.oussoren | 2010-04-21 08:00:35 +0200 (Wed, 21 Apr 2010) | 2 lines

  Sync test_plistlib.py with plistlib.py
........

14 years agoMerged revisions 80144 via svnmerge from
R. David Murray [Wed, 21 Apr 2010 01:51:57 +0000 (01:51 +0000)]
Merged revisions 80144 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80144 | r.david.murray | 2010-04-17 01:26:26 -0400 (Sat, 17 Apr 2010) | 8 lines

  Issue #3864: Skip three test_signal tests on freebsd6 due to platform bug.

  Two itimer tests and an interprocess signal test fail on FreeBSD 6 if
  any test that starts a thread runs before test_signal.  Since FreeBSD7
  does not show this behavior, the bug is most likely a platform bug,
  so this patch just skips the failing tests on freebsd6.
........

14 years agoRework delta_divmod to avoid use of PyTuple_SetItem.
Mark Dickinson [Tue, 20 Apr 2010 23:24:25 +0000 (23:24 +0000)]
Rework delta_divmod to avoid use of PyTuple_SetItem.

14 years agoFix memory leak.
Mark Dickinson [Tue, 20 Apr 2010 22:39:53 +0000 (22:39 +0000)]
Fix memory leak.

14 years agoIssue #2706: Add support for dividing a timedelta by another timedelta.
Mark Dickinson [Tue, 20 Apr 2010 22:32:49 +0000 (22:32 +0000)]
Issue #2706:  Add support for dividing a timedelta by another timedelta.

Adds support for the three division operations:

  - timedelta / timedelta -> float
  - timedelta // timedelta -> int
  - timedelta % timedelta -> timedelta

also adds support for divmod(timedelta, timedelta).

Patch by Victor Stinner, adapted for py3k and extended by Alexander
Belopolsky.

14 years agoMerged revisions 80288 via svnmerge from
Victor Stinner [Tue, 20 Apr 2010 22:32:07 +0000 (22:32 +0000)]
Merged revisions 80288 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80288 | victor.stinner | 2010-04-21 00:28:31 +0200 (mer., 21 avril 2010) | 2 lines

  Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm
........

14 years agoMerged revisions 80282 via svnmerge from
Tarek Ziadé [Tue, 20 Apr 2010 21:40:47 +0000 (21:40 +0000)]
Merged revisions 80282 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80282 | tarek.ziade | 2010-04-20 23:09:06 +0200 (Tue, 20 Apr 2010) | 1 line

  removed ztar support in shutil.make_archive
........

14 years agoMerged revisions 80279 via svnmerge from
Ronald Oussoren [Tue, 20 Apr 2010 21:00:34 +0000 (21:00 +0000)]
Merged revisions 80279 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80279 | ronald.oussoren | 2010-04-20 22:59:37 +0200 (Tue, 20 Apr 2010) | 3 lines

  Fix for issue 7852: the DTD for OSX Plists has changed due
  to a change in the company name for Apple.
........

14 years agoMerged revisions 80277 via svnmerge from
Senthil Kumaran [Tue, 20 Apr 2010 20:42:50 +0000 (20:42 +0000)]
Merged revisions 80277 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80277 | senthil.kumaran | 2010-04-21 02:07:59 +0530 (Wed, 21 Apr 2010) | 3 lines

  Issue2987 - Added additional Invalid URL and changed the Invalid URL checking code for better.
........

14 years ago* Fixes cut&paste error in configure
Ronald Oussoren [Tue, 20 Apr 2010 19:51:33 +0000 (19:51 +0000)]
* Fixes cut&paste error in configure
* Ensure that framework install works given the
  recent CFLAGS and BASECFLAGS changes

14 years agoMerged revisions 80274 via svnmerge from
Matthias Klose [Tue, 20 Apr 2010 19:48:04 +0000 (19:48 +0000)]
Merged revisions 80274 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80274 | matthias.klose | 2010-04-20 21:45:34 +0200 (Di, 20 Apr 2010) | 2 lines

  fix typo in r79533, introduced by the fix for issue #8233
........

14 years agoMarkup nit.
Georg Brandl [Tue, 20 Apr 2010 18:15:54 +0000 (18:15 +0000)]
Markup nit.

14 years agoBlocked revisions 80270 via svnmerge
Ezio Melotti [Tue, 20 Apr 2010 16:57:51 +0000 (16:57 +0000)]
Blocked revisions 80270 via svnmerge

........
  r80270 | ezio.melotti | 2010-04-20 19:49:48 +0300 (Tue, 20 Apr 2010) | 1 line

  #8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools.ifilterfalse
........

14 years agoUpdated version numbers from 2.7 to 3.2
Brian Curtin [Tue, 20 Apr 2010 15:28:06 +0000 (15:28 +0000)]
Updated version numbers from 2.7 to 3.2

Merged revisions 80265 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80265 | brian.curtin | 2010-04-20 10:23:18 -0500 (Tue, 20 Apr 2010) | 2 lines

  Add version info for os.kill and signal changes from #1220212.
........

14 years agofixed typo -- thanks Nick
Tarek Ziadé [Tue, 20 Apr 2010 14:31:49 +0000 (14:31 +0000)]
fixed typo -- thanks Nick

14 years agoAdd missing arg, fix indentation and spelling.
Ezio Melotti [Tue, 20 Apr 2010 11:26:51 +0000 (11:26 +0000)]
Add missing arg, fix indentation and spelling.

14 years agoFix two versionchanged.
Ezio Melotti [Tue, 20 Apr 2010 10:57:44 +0000 (10:57 +0000)]
Fix two versionchanged.

14 years agoMerged revisions 80236 via svnmerge from
Senthil Kumaran [Tue, 20 Apr 2010 10:35:49 +0000 (10:35 +0000)]
Merged revisions 80236 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80236 | senthil.kumaran | 2010-04-20 12:24:59 +0530 (Tue, 20 Apr 2010) | 3 lines

  Fix Issue8460: Victor's patch to add timeout in test_urllib2net test_urls.
........

14 years agoMerged revisions 79963,80024,80064,80070,80085,80088 via svnmerge from
Ezio Melotti [Tue, 20 Apr 2010 09:55:05 +0000 (09:55 +0000)]
Merged revisions 79963,80024,80064,80070,80085,80088 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79963 | andrew.kuchling | 2010-04-11 23:40:09 +0300 (Sun, 11 Apr 2010) | 1 line

  Add several items
........
  r80024 | andrew.kuchling | 2010-04-13 04:32:51 +0300 (Tue, 13 Apr 2010) | 1 line

  Add an item; stray edit
........
  r80064 | andrew.kuchling | 2010-04-14 04:14:59 +0300 (Wed, 14 Apr 2010) | 1 line

  Add argparse example
........
  r80070 | andrew.kuchling | 2010-04-14 17:28:31 +0300 (Wed, 14 Apr 2010) | 1 line

  Add some text
........
  r80085 | andrew.kuchling | 2010-04-15 02:55:17 +0300 (Thu, 15 Apr 2010) | 1 line

  Add various items; correct argparse output
........
  r80088 | andrew.kuchling | 2010-04-15 04:42:27 +0300 (Thu, 15 Apr 2010) | 1 line

  Add various items
........

14 years agoUpdate the python version in the interpreter tutorial.
Ezio Melotti [Tue, 20 Apr 2010 09:41:59 +0000 (09:41 +0000)]
Update the python version in the interpreter tutorial.

14 years agoFix versionadded in unittest.rst.
Ezio Melotti [Tue, 20 Apr 2010 09:32:54 +0000 (09:32 +0000)]
Fix versionadded in unittest.rst.

14 years agoadded a note on shutil.copytree improvements
Tarek Ziadé [Tue, 20 Apr 2010 09:13:23 +0000 (09:13 +0000)]
added a note on shutil.copytree improvements

14 years agoFixed #6547: Added the ignore_dangling_symlinks option to shutil.copytree
Tarek Ziadé [Tue, 20 Apr 2010 08:57:33 +0000 (08:57 +0000)]
Fixed #6547: Added the ignore_dangling_symlinks option to shutil.copytree

14 years agoMerged revisions 80238 via svnmerge from
Stefan Krah [Tue, 20 Apr 2010 08:13:03 +0000 (08:13 +0000)]
Merged revisions 80238 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80238 | stefan.krah | 2010-04-20 09:59:10 +0200 (Tue, 20 Apr 2010) | 9 lines

  1) The timeout in the itimer tests was too low for slow or heavily
     loaded machines.

  2) Even with the increased timeout, the OS does not guarantee that
     a process will get a certain amount of virtual time in 60s, so
     the failure is changed to a diagnostic.
........

14 years agoMerged revisions 80232 via svnmerge from
Ronald Oussoren [Tue, 20 Apr 2010 06:36:47 +0000 (06:36 +0000)]
Merged revisions 80232 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80232 | ronald.oussoren | 2010-04-20 07:50:44 +0200 (Tue, 20 Apr 2010) | 3 lines

  Explicitly set system default for $PATH to
  ensure we have a clean build environment (OSX installer)
........

14 years agoFixed #1540112: now shutil.copytree will let you provide your own copy() function
Tarek Ziadé [Mon, 19 Apr 2010 22:30:51 +0000 (22:30 +0000)]
Fixed #1540112: now shutil.copytree will let you provide your own copy() function

14 years agoMerged revisions 80226 via svnmerge from
Giampaolo Rodolà [Mon, 19 Apr 2010 22:05:54 +0000 (22:05 +0000)]
Merged revisions 80226 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80226 | giampaolo.rodola | 2010-04-19 23:46:28 +0200 (lun, 19 apr 2010) | 1 line

  Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands
........

14 years agoMerged revisions 80221 via svnmerge from
Tarek Ziadé [Mon, 19 Apr 2010 21:31:42 +0000 (21:31 +0000)]
Merged revisions 80221 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80221 | tarek.ziade | 2010-04-19 23:28:21 +0200 (Mon, 19 Apr 2010) | 1 line

  Fixed #8463: added missing reference to bztar in shutil's documentation.
........

14 years agoMerged revisions 80218 via svnmerge from
Tarek Ziadé [Mon, 19 Apr 2010 21:19:57 +0000 (21:19 +0000)]
Merged revisions 80218 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80218 | tarek.ziade | 2010-04-19 23:13:03 +0200 (Mon, 19 Apr 2010) | 1 line

  few pep8 fixes
........

14 years agoBlocked revisions 80215 via svnmerge
Antoine Pitrou [Mon, 19 Apr 2010 19:38:22 +0000 (19:38 +0000)]
Blocked revisions 80215 via svnmerge

........
  r80215 | antoine.pitrou | 2010-04-19 20:52:43 +0200 (lun., 19 avril 2010) | 4 lines

  Issue #8438: Remove reference to the missing "surrogateescape" encoding
  error handler from the new IO library.
........

14 years agoRemove obsolete mention of IRIX native threads -- we don't use them anymore.
Antoine Pitrou [Mon, 19 Apr 2010 14:09:57 +0000 (14:09 +0000)]
Remove obsolete mention of IRIX native threads -- we don't use them anymore.

14 years agoAdd version{added,changed} for lock timeout support.
Antoine Pitrou [Mon, 19 Apr 2010 14:05:51 +0000 (14:05 +0000)]
Add version{added,changed} for lock timeout support.

14 years agoI'll maintain syslog. I've made most of the "recent" changes to it anyway.
Sean Reifscheider [Mon, 19 Apr 2010 06:06:12 +0000 (06:06 +0000)]
I'll maintain syslog.  I've made most of the "recent" changes to it anyway.

14 years agoBlocked revisions 80202 via svnmerge
Benjamin Peterson [Sun, 18 Apr 2010 23:08:30 +0000 (23:08 +0000)]
Blocked revisions 80202 via svnmerge

........
  r80202 | raymond.hettinger | 2010-04-18 17:57:57 -0500 (Sun, 18 Apr 2010) | 1 line

  Issue 8436: set.__init__ accepts keyword args
........

14 years agoIssue 8436: set.__init__ accepts keyword args
Raymond Hettinger [Sun, 18 Apr 2010 23:05:22 +0000 (23:05 +0000)]
Issue 8436: set.__init__ accepts keyword args