]> granicus.if.org Git - python/log
python
14 years agoPCBuild cosmetic fixes.
Hirokazu Yamamoto [Fri, 10 Sep 2010 03:08:24 +0000 (03:08 +0000)]
PCBuild cosmetic fixes.
* pythoncore.vcproj: Removed doubled entries, and sorted entries a bit.
* _multiprocessing.vcproj: Converted ProjectGUID to uppercase. Otherwise,
  VS8 _multiprocessing.vcproj created by vs9to8.py was modified every time
  loads it in VS8 IDE.

14 years agoMerged revisions 84650 via svnmerge from
Antoine Pitrou [Thu, 9 Sep 2010 13:35:44 +0000 (13:35 +0000)]
Merged revisions 84650 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84650 | antoine.pitrou | 2010-09-09 15:31:46 +0200 (jeu., 09 sept. 2010) | 4 lines

  Use transient_internet() where appropriate in test_ssl
  (svn.python.org is sometimes unavailable)
........

14 years agoMerged revisions 84635-84636 via svnmerge from
Antoine Pitrou [Wed, 8 Sep 2010 21:12:36 +0000 (21:12 +0000)]
Merged revisions 84635-84636 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84635 | antoine.pitrou | 2010-09-08 22:57:48 +0200 (mer., 08 sept. 2010) | 5 lines

  Issue #9188: The gdb extension now handles correctly narrow (UCS2) as well
  as wide (UCS4) unicode builds for both the host interpreter (embedded
  inside gdb) and the interpreter under test.
........
  r84636 | antoine.pitrou | 2010-09-08 23:07:40 +0200 (mer., 08 sept. 2010) | 4 lines

  Add a safety limit to the number of unicode characters we fetch
  (followup to r84635, suggested by Dave Malcolm).
........

14 years agoMerged revisions 84623 via svnmerge from
Antoine Pitrou [Wed, 8 Sep 2010 12:40:49 +0000 (12:40 +0000)]
Merged revisions 84623 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84623 | antoine.pitrou | 2010-09-08 14:37:10 +0200 (mer., 08 sept. 2010) | 4 lines

  Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
  thread-local storage key.
........

14 years agoIssue5416 - Revert a documentatin change made to explain replace on negative value.
Senthil Kumaran [Wed, 8 Sep 2010 12:40:45 +0000 (12:40 +0000)]
Issue5416 - Revert a documentatin change made to explain replace on negative value.
Minor changes to doc:  s/maxsplit/maxreplace

14 years agoSynchronize maintainers.rst
Éric Araujo [Wed, 8 Sep 2010 12:40:15 +0000 (12:40 +0000)]
Synchronize maintainers.rst

14 years agoStdoutTests.test_unicode(): avoid newlines to fix the test on windows
Victor Stinner [Wed, 8 Sep 2010 11:45:16 +0000 (11:45 +0000)]
StdoutTests.test_unicode(): avoid newlines to fix the test on windows

 * Add also a test for utf-8
 * Add some comments
 * Flush stdout for the buffer API tests

14 years agoIssue #4947: The write() method of sys.stdout and sys.stderr uses their
Victor Stinner [Wed, 8 Sep 2010 10:51:01 +0000 (10:51 +0000)]
Issue #4947: The write() method of sys.stdout and sys.stderr uses their
encoding and errors attributes instead of using utf-8 in strict mode, to get
the same behaviour than the print statement.

14 years agoMerged revisions 84614 via svnmerge from
Éric Araujo [Wed, 8 Sep 2010 00:02:29 +0000 (00:02 +0000)]
Merged revisions 84614 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84614 | eric.araujo | 2010-09-08 02:00:45 +0200 (mer., 08 sept. 2010) | 5 lines

  Follow-up to #9199: Fix str.join use, add newlines.

  Thanks to Konrad Delong for writing a test for upload_docs
  --show-response in distutils2, letting me catch my mistake.
........

14 years agoMerged revisions 84611 via svnmerge from
Éric Araujo [Tue, 7 Sep 2010 23:12:59 +0000 (23:12 +0000)]
Merged revisions 84611 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84611 | eric.araujo | 2010-09-08 01:08:57 +0200 (mer., 08 sept. 2010) | 2 lines

  Fix incorrect use of Command.announce (#9199)
........

14 years agoMerged revisions 84608 via svnmerge from
Éric Araujo [Tue, 7 Sep 2010 22:18:34 +0000 (22:18 +0000)]
Merged revisions 84608 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84608 | eric.araujo | 2010-09-08 00:11:52 +0200 (mer., 08 sept. 2010) | 2 lines

  Fix eon-old bug in build_clib options (#1718574)
........

14 years agoMerged revisions 84604 via svnmerge from
Antoine Pitrou [Tue, 7 Sep 2010 21:46:05 +0000 (21:46 +0000)]
Merged revisions 84604 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84604 | antoine.pitrou | 2010-09-07 23:43:31 +0200 (mar., 07 sept. 2010) | 3 lines

  Also catch some gaierrors
........

14 years agoMerged revisions 84597-84599 via svnmerge from
Antoine Pitrou [Tue, 7 Sep 2010 21:40:25 +0000 (21:40 +0000)]
Merged revisions 84597-84599 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84597 | antoine.pitrou | 2010-09-07 22:42:19 +0200 (mar., 07 sept. 2010) | 5 lines

  Issue #8574: better implementation of test.support.transient_internet().
  Original patch by Victor.
........
  r84598 | antoine.pitrou | 2010-09-07 23:05:49 +0200 (mar., 07 sept. 2010) | 6 lines

  Issue #9792: In case of connection failure, socket.create_connection()
  would swallow the exception and raise a new one, making it impossible
  to fetch the original errno, or to filter timeout errors.  Now the
  original error is re-raised.
........
  r84599 | antoine.pitrou | 2010-09-07 23:09:09 +0200 (mar., 07 sept. 2010) | 4 lines

  Improve transient_internet() again to detect more network errors,
  and use it in test_robotparser. Fixes #8574.
........

14 years agoMerged revisions 84592 via svnmerge from
Antoine Pitrou [Tue, 7 Sep 2010 18:46:41 +0000 (18:46 +0000)]
Merged revisions 84592 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84592 | antoine.pitrou | 2010-09-07 20:44:12 +0200 (mar., 07 sept. 2010) | 5 lines

  Update nntplib examples to use a public news server.
  The example still doesn't work as-is under py3k, due to incomplete
  or buggy porting of the nntplib module.
........

14 years agoMerged revisions 84589 via svnmerge from
Antoine Pitrou [Tue, 7 Sep 2010 16:34:47 +0000 (16:34 +0000)]
Merged revisions 84589 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84589 | antoine.pitrou | 2010-09-07 18:30:09 +0200 (mar., 07 sept. 2010) | 5 lines

  Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,
  and the passed buffer was exactly 1024 bytes long, the buffer wouldn't
  be updated back after the system call.  Original patch by Brian Brazil.
........

14 years agoMerged revisions 84584 via svnmerge from
Antoine Pitrou [Tue, 7 Sep 2010 14:55:24 +0000 (14:55 +0000)]
Merged revisions 84584 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84584 | antoine.pitrou | 2010-09-07 16:52:42 +0200 (mar., 07 sept. 2010) | 4 lines

  Issue #4026: Make the fcntl extension build under AIX.
  Patch by Sébastien Sablé.
........

14 years agoMerged revisions 84582 via svnmerge from
Brian Curtin [Tue, 7 Sep 2010 13:27:20 +0000 (13:27 +0000)]
Merged revisions 84582 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84582 | brian.curtin | 2010-09-07 08:24:38 -0500 (Tue, 07 Sep 2010) | 3 lines

  Adjust #8956 to add the bad signal number to the exception message.
........

14 years agoRemove outdated XXX comment. Mapping support was removed for 3.x.
Raymond Hettinger [Mon, 6 Sep 2010 22:54:24 +0000 (22:54 +0000)]
Remove outdated XXX comment.  Mapping support was removed for 3.x.

14 years agoUpdated information on logging contextual information.
Vinay Sajip [Mon, 6 Sep 2010 22:18:20 +0000 (22:18 +0000)]
Updated information on logging contextual information.

14 years agoMerged revisions 84559 via svnmerge from
Brian Curtin [Mon, 6 Sep 2010 16:31:27 +0000 (16:31 +0000)]
Merged revisions 84559 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84559 | brian.curtin | 2010-09-06 11:29:29 -0500 (Mon, 06 Sep 2010) | 6 lines

  Fix #8956. ValueError message was only mentioning one signal.

  Rather than list out the three signals (or more over time), the message was
  made less specific but still descriptive.
........

14 years agoMerged revisions 84556 via svnmerge from
Brian Curtin [Mon, 6 Sep 2010 16:17:50 +0000 (16:17 +0000)]
Merged revisions 84556 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84556 | brian.curtin | 2010-09-06 11:04:10 -0500 (Mon, 06 Sep 2010) | 7 lines

  Clean up the fix to #9324 with some of the suggestions raised on python-dev
  in response to the original checkin.

  Move the validation from the original loop into a switch statement,
  and adjust a platform check in the tests.
........

14 years agoMerged revisions 84506 via svnmerge from
Antoine Pitrou [Sat, 4 Sep 2010 21:24:42 +0000 (21:24 +0000)]
Merged revisions 84506 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84506 | antoine.pitrou | 2010-09-04 22:53:29 +0200 (sam., 04 sept. 2010) | 5 lines

  Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
  descriptor is provided.  Patch by Pascal Chambon.
........

14 years agoMerged revisions 84495-84496 via svnmerge from
Antoine Pitrou [Sat, 4 Sep 2010 17:52:26 +0000 (17:52 +0000)]
Merged revisions 84495-84496 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84495 | antoine.pitrou | 2010-09-04 19:40:21 +0200 (sam., 04 sept. 2010) | 4 lines

  Issue #1100562: Fix deep-copying of objects derived from the list and dict types.
  Patch by Michele Orrù and Björn Lindqvist.
........
  r84496 | antoine.pitrou | 2010-09-04 19:40:51 +0200 (sam., 04 sept. 2010) | 3 lines

  Fix Björn's name in ACKS.
........

14 years agoMerged revisions 84492 via svnmerge from
Antoine Pitrou [Sat, 4 Sep 2010 17:34:12 +0000 (17:34 +0000)]
Merged revisions 84492 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84492 | antoine.pitrou | 2010-09-04 19:32:06 +0200 (sam., 04 sept. 2010) | 4 lines

  Issue #9581: Fix non-working PosixGroupsTester test case
  (it only runs as root, which is why nobody bothered about the failure)
........

14 years agoMerged revisions 84489 via svnmerge from
Antoine Pitrou [Sat, 4 Sep 2010 17:27:10 +0000 (17:27 +0000)]
Merged revisions 84489 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84489 | antoine.pitrou | 2010-09-04 19:21:57 +0200 (sam., 04 sept. 2010) | 4 lines

  Issue #7736: Release the GIL around calls to opendir() and closedir()
  in the posix module.  Patch by Marcin Bachry.
........

14 years agoMerged revisions 84472 via svnmerge from
Éric Araujo [Fri, 3 Sep 2010 22:06:31 +0000 (22:06 +0000)]
Merged revisions 84472 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84472 | eric.araujo | 2010-09-04 00:03:10 +0200 (sam., 04 sept. 2010) | 2 lines

  Fix invalid bytes for UTF-8
........

14 years agoMerged revisions 84452 via svnmerge from
Antoine Pitrou [Fri, 3 Sep 2010 16:15:17 +0000 (16:15 +0000)]
Merged revisions 84452 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84452 | antoine.pitrou | 2010-09-03 18:12:14 +0200 (ven., 03 sept. 2010) | 3 lines

  Fix NEWS entry.
........

14 years agoAn example that shows that _PyInstance_Lookup() does not fulfill
Armin Rigo [Fri, 3 Sep 2010 09:26:14 +0000 (09:26 +0000)]
An example that shows that _PyInstance_Lookup() does not fulfill
its documented purpose.

14 years agoIssue #7077: Backported fix from py3k.
Vinay Sajip [Fri, 3 Sep 2010 09:06:07 +0000 (09:06 +0000)]
Issue #7077: Backported fix from py3k.

14 years agofix output from RawConfigParser.write and ConfigParser.write for None
Fred Drake [Fri, 3 Sep 2010 03:55:50 +0000 (03:55 +0000)]
fix output from RawConfigParser.write and ConfigParser.write for None
values (http://bugs.python.org/issue7005)

14 years agoMerged revisions 84438 via svnmerge from
Antoine Pitrou [Thu, 2 Sep 2010 22:23:19 +0000 (22:23 +0000)]
Merged revisions 84438 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84438 | antoine.pitrou | 2010-09-02 21:48:07 +0200 (jeu., 02 sept. 2010) | 3 lines

  BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS.
........

14 years agoMore descriptive title.
Raymond Hettinger [Wed, 1 Sep 2010 22:37:17 +0000 (22:37 +0000)]
More descriptive title.

14 years agoGlossary cleanup
Raymond Hettinger [Wed, 1 Sep 2010 22:25:41 +0000 (22:25 +0000)]
Glossary cleanup

14 years agoCleanup heapq docs
Raymond Hettinger [Wed, 1 Sep 2010 21:20:07 +0000 (21:20 +0000)]
Cleanup heapq docs

14 years agoMerged revisions 84408-84409 via svnmerge from
Antoine Pitrou [Wed, 1 Sep 2010 21:17:34 +0000 (21:17 +0000)]
Merged revisions 84408-84409 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84408 | antoine.pitrou | 2010-09-01 23:14:16 +0200 (mer., 01 sept. 2010) | 4 lines

  Issue #9737: Fix a crash when trying to delete a slice or an item from
  a memoryview object.
........
  r84409 | antoine.pitrou | 2010-09-01 23:14:46 +0200 (mer., 01 sept. 2010) | 3 lines

  Fix a compilation warning
........

14 years agoClean-up bisect docs.
Raymond Hettinger [Wed, 1 Sep 2010 19:42:36 +0000 (19:42 +0000)]
Clean-up bisect docs.

14 years agoBlocked revisions 84397 via svnmerge
Antoine Pitrou [Wed, 1 Sep 2010 18:57:02 +0000 (18:57 +0000)]
Blocked revisions 84397 via svnmerge

........
  r84397 | antoine.pitrou | 2010-09-01 20:54:56 +0200 (mer., 01 sept. 2010) | 5 lines

  Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()
  are now removed, since their effect was inexistent in 3.x (the default
  encoding is hardcoded to utf-8 and cannot be changed).
........

14 years agoBlocked revisions 84394 via svnmerge
Antoine Pitrou [Wed, 1 Sep 2010 15:15:28 +0000 (15:15 +0000)]
Blocked revisions 84394 via svnmerge

........
  r84394 | antoine.pitrou | 2010-09-01 17:10:12 +0200 (mer., 01 sept. 2010) | 4 lines

  Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API
  properly.  Patch by Stefan Behnel.
........

14 years agoMerged revisions 84391 via svnmerge from
Antoine Pitrou [Wed, 1 Sep 2010 13:02:50 +0000 (13:02 +0000)]
Merged revisions 84391 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84391 | antoine.pitrou | 2010-09-01 14:58:21 +0200 (mer., 01 sept. 2010) | 5 lines

  Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become
  _Py_add_one_to_C() and _Py_add_one_to_F(), respectively.
........

14 years agoIssue #808164: Fixed socket.close to avoid references to globals, to
Daniel Stutzbach [Tue, 31 Aug 2010 20:29:39 +0000 (20:29 +0000)]
Issue #808164: Fixed socket.close to avoid references to globals, to
avoid issues when socket.close is called from a __del__ method.

14 years agoImproved logging.Formatter date/time formatting documentation.
Vinay Sajip [Mon, 30 Aug 2010 18:10:03 +0000 (18:10 +0000)]
Improved logging.Formatter date/time formatting documentation.

14 years agoMerged revisions 84366 via svnmerge from
Antoine Pitrou [Mon, 30 Aug 2010 14:55:30 +0000 (14:55 +0000)]
Merged revisions 84366 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84366 | antoine.pitrou | 2010-08-30 16:52:00 +0200 (lun., 30 août 2010) | 5 lines

  Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x.  Patch by
  Sébastien Sablé.
........

14 years agoversionadded
Benjamin Peterson [Sat, 28 Aug 2010 20:56:50 +0000 (20:56 +0000)]
versionadded

14 years agoBlocked revisions 84347 via svnmerge
Antoine Pitrou [Sat, 28 Aug 2010 20:55:42 +0000 (20:55 +0000)]
Blocked revisions 84347 via svnmerge

........
  r84347 | antoine.pitrou | 2010-08-28 22:42:55 +0200 (sam., 28 août 2010) | 5 lines

  Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private
  to the socket module, and fix the width of socket descriptors to be
  correctly detected under 64-bit Windows.
........

14 years agoMerged revisions 84344 via svnmerge from
Antoine Pitrou [Sat, 28 Aug 2010 18:29:13 +0000 (18:29 +0000)]
Merged revisions 84344 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84344 | antoine.pitrou | 2010-08-28 20:17:03 +0200 (sam., 28 août 2010) | 4 lines

  Issue #1868: Eliminate subtle timing issues in thread-local objects by
  getting rid of the cached copy of thread-local attribute dictionary.
........

14 years agoMerged revisions 84323 via svnmerge from
Senthil Kumaran [Thu, 26 Aug 2010 06:20:13 +0000 (06:20 +0000)]
Merged revisions 84323 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84323 | senthil.kumaran | 2010-08-26 11:46:22 +0530 (Thu, 26 Aug 2010) | 3 lines

  Fix Issue8797 - Reset the basic auth retry count when response code is not 401.
........

14 years agoMerged revisions 84320 via svnmerge from
Benjamin Peterson [Wed, 25 Aug 2010 23:17:42 +0000 (23:17 +0000)]
Merged revisions 84320 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84320 | benjamin.peterson | 2010-08-25 18:13:17 -0500 (Wed, 25 Aug 2010) | 1 line

  basicsize and itemsize are Py_ssize_t #9688
........

14 years agoMerged revisions 84310 via svnmerge from
R. David Murray [Wed, 25 Aug 2010 01:45:57 +0000 (01:45 +0000)]
Merged revisions 84310 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84310 | r.david.murray | 2010-08-24 20:45:55 -0400 (Tue, 24 Aug 2010) | 8 lines

  #1194222: make parsedate always return RFC2822 four character years.

  Two character years are now converted to four character years using
  the Posix standard rule (<68 == 2000, >=68==1900).  This makes the
  parsed date RFC2822 compliant even if the input is not.

  Patch and test by Jeffrey Finkelstein.
........

14 years agoMerged revisions 84301 via svnmerge from
Daniel Stutzbach [Tue, 24 Aug 2010 21:09:30 +0000 (21:09 +0000)]
Merged revisions 84301 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84301 | daniel.stutzbach | 2010-08-24 15:49:57 -0500 (Tue, 24 Aug 2010) | 1 line

  Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operations, namely x -= x and x ^= x
........

14 years agoMerged revisions 84299 via svnmerge from
Benjamin Peterson [Tue, 24 Aug 2010 18:10:46 +0000 (18:10 +0000)]
Merged revisions 84299 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84299 | benjamin.peterson | 2010-08-24 13:08:22 -0500 (Tue, 24 Aug 2010) | 1 line

  tabbing no longer applicable
........

14 years agoAdd the original test case of bug #1469629,
Armin Rigo [Tue, 24 Aug 2010 12:53:02 +0000 (12:53 +0000)]
Add the original test case of bug #1469629,
formatted according to local conventions.

14 years agoMerged revisions 84289 via svnmerge from
Giampaolo Rodolà [Mon, 23 Aug 2010 22:48:51 +0000 (22:48 +0000)]
Merged revisions 84289 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84289 | giampaolo.rodola | 2010-08-24 00:28:13 +0200 (mar, 24 ago 2010) | 1 line

  fix issue 9129: adds proper error handling on accept() when smtpd accepts new incoming connections.
........

14 years agoMerged revisions 84284 via svnmerge from
Giampaolo Rodolà [Mon, 23 Aug 2010 21:58:47 +0000 (21:58 +0000)]
Merged revisions 84284 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84284 | giampaolo.rodola | 2010-08-23 23:53:41 +0200 (lun, 23 ago 2010) | 1 line

  fix issue 658749: correctly interprets asyncore's windows errors on connect()
........

14 years agoIssue #9501: Fixed logging regressions in cleanup code.
Vinay Sajip [Mon, 23 Aug 2010 17:50:30 +0000 (17:50 +0000)]
Issue #9501: Fixed logging regressions in cleanup code.

14 years agoenable and fix TestTotalOrdering
Benjamin Peterson [Mon, 23 Aug 2010 17:45:31 +0000 (17:45 +0000)]
enable and fix TestTotalOrdering

14 years agoMerged revisions 84263 via svnmerge from
Daniel Stutzbach [Sun, 22 Aug 2010 20:37:15 +0000 (20:37 +0000)]
Merged revisions 84263 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84263 | daniel.stutzbach | 2010-08-22 14:41:04 -0500 (Sun, 22 Aug 2010) | 1 line

  Added myself to Misc/maintainers.rst for topics on which I'd like to be added to the nosy list
........

14 years agoUpdated maintainers.rst to reflect correct Roundup name.
Vinay Sajip [Sun, 22 Aug 2010 18:41:24 +0000 (18:41 +0000)]
Updated maintainers.rst to reflect correct Roundup name.

14 years agoIssue #9512: Made comment more informative.
Vinay Sajip [Sun, 22 Aug 2010 18:11:02 +0000 (18:11 +0000)]
Issue #9512: Made comment more informative.

14 years agoIssue 7871: Delete unused test.
Raymond Hettinger [Sun, 22 Aug 2010 08:12:09 +0000 (08:12 +0000)]
Issue 7871:  Delete unused test.

14 years agoIssue #9214: Fix set operations on KeysView and ItemsView.
Raymond Hettinger [Sun, 22 Aug 2010 08:01:58 +0000 (08:01 +0000)]
Issue #9214:  Fix set operations on KeysView and ItemsView.

14 years agoMerged revisions 84242-84244 via svnmerge from
Benjamin Peterson [Sat, 21 Aug 2010 20:12:19 +0000 (20:12 +0000)]
Merged revisions 84242-84244 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84242 | benjamin.peterson | 2010-08-21 15:01:28 -0500 (Sat, 21 Aug 2010) | 1 line

  indent properly
........
  r84243 | benjamin.peterson | 2010-08-21 15:03:15 -0500 (Sat, 21 Aug 2010) | 1 line

  fix more indentation
........
  r84244 | benjamin.peterson | 2010-08-21 15:08:36 -0500 (Sat, 21 Aug 2010) | 1 line

  provide sample implementations for attrgetter and methodcaller
........

14 years agoMerged revisions 84239 via svnmerge from
Antoine Pitrou [Sat, 21 Aug 2010 19:17:25 +0000 (19:17 +0000)]
Merged revisions 84239 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84239 | antoine.pitrou | 2010-08-21 21:09:32 +0200 (sam., 21 août 2010) | 4 lines

  Issue #9617: Signals received during a low-level write operation aren't
  ignored by the buffered IO layer anymore.
........

14 years agoMerged revisions 84234 via svnmerge from
Senthil Kumaran [Sat, 21 Aug 2010 16:14:54 +0000 (16:14 +0000)]
Merged revisions 84234 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84234 | senthil.kumaran | 2010-08-21 21:38:32 +0530 (Sat, 21 Aug 2010) | 3 lines

  Add info about HTTP/1.1 and Connection:Close header.
........

14 years agoRemove weakref from setup.py now that it is builtin.
Georg Brandl [Sat, 21 Aug 2010 13:05:38 +0000 (13:05 +0000)]
Remove weakref from setup.py now that it is builtin.

14 years agoRemove duplicate entry.
Georg Brandl [Sat, 21 Aug 2010 11:40:30 +0000 (11:40 +0000)]
Remove duplicate entry.

14 years agoUse weakrefs to hold onto classes #2521.
Benjamin Peterson [Sat, 21 Aug 2010 03:03:22 +0000 (03:03 +0000)]
Use weakrefs to hold onto classes #2521.

This also causes the _weakref module to be built into the core.

14 years agoMerged revisions 84209, 84214 via svnmerge from
Amaury Forgeot d'Arc [Thu, 19 Aug 2010 21:50:08 +0000 (21:50 +0000)]
Merged revisions 84209, 84214 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84209 | amaury.forgeotdarc | 2010-08-19 19:43:15 +0200 (jeu., 19 août 2010) | 5 lines

  Check the return values for all functions returning an ast node.
  Failure to do it may result in strange error messages or even crashes,
  in admittedly convoluted cases that are normally syntax errors, like:
      def f(*xx, __debug__): pass
........
  r84214 | amaury.forgeotdarc | 2010-08-19 23:32:38 +0200 (jeu., 19 août 2010) | 3 lines

  Add tests for r84209 (crashes in the Ast builder)
  Also remove one tab, and move a check closer to the possible failure.
........

14 years agoIssue #9606: Updated documentation for Filter objects.
Vinay Sajip [Thu, 19 Aug 2010 19:17:41 +0000 (19:17 +0000)]
Issue #9606: Updated documentation for Filter objects.

14 years agoFix - Issue9639: Reset the retry counter after successful authentication.
Senthil Kumaran [Thu, 19 Aug 2010 17:32:03 +0000 (17:32 +0000)]
Fix - Issue9639: Reset the retry counter after successful authentication.

14 years agoMerged revisions 84172 via svnmerge from
Martin v. Löwis [Thu, 19 Aug 2010 09:09:04 +0000 (09:09 +0000)]
Merged revisions 84172 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84172 | martin.v.loewis | 2010-08-18 18:12:23 +0200 (Mi, 18 Aug 2010) | 2 lines

  Restore GIL in nis_cat in case of error.
........

14 years agoMerged revisions 84187 via svnmerge from
Éric Araujo [Wed, 18 Aug 2010 22:48:00 +0000 (22:48 +0000)]
Merged revisions 84187 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84187 | eric.araujo | 2010-08-19 00:29:54 +0200 (jeu., 19 août 2010) | 2 lines

  Fix indentation level
........

14 years agoMerged revisions 84176 via svnmerge from
Antoine Pitrou [Wed, 18 Aug 2010 20:45:10 +0000 (20:45 +0000)]
Merged revisions 84176 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84176 | antoine.pitrou | 2010-08-18 22:44:14 +0200 (mer., 18 août 2010) | 5 lines

  Issue #9433: The "-j" option to regrtest now works under Windows too.
  It is not sure it will be beneficial, though, since process launching is
  more expensive under Windows than it is under Linux.
........

14 years agoMerged revisions 84173 via svnmerge from
Senthil Kumaran [Wed, 18 Aug 2010 19:35:53 +0000 (19:35 +0000)]
Merged revisions 84173 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84173 | senthil.kumaran | 2010-08-19 01:02:21 +0530 (Thu, 19 Aug 2010) | 3 lines

  Fix Issue672656 - Securing pydoc server.
........

14 years agoIssue #9626: Fix views in collections.OrderedDict().
Raymond Hettinger [Tue, 17 Aug 2010 19:03:06 +0000 (19:03 +0000)]
Issue #9626: Fix views in collections.OrderedDict().

14 years agoMerged revisions 84134 via svnmerge from
Ezio Melotti [Tue, 17 Aug 2010 08:38:05 +0000 (08:38 +0000)]
Merged revisions 84134 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84134 | ezio.melotti | 2010-08-17 11:35:41 +0300 (Tue, 17 Aug 2010) | 1 line

  Correct a couple of assert* methods. Patch by Dave Malcolm.
........

14 years agoMerged revisions 84125 via svnmerge from
Benjamin Peterson [Tue, 17 Aug 2010 01:10:45 +0000 (01:10 +0000)]
Merged revisions 84125 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84125 | benjamin.peterson | 2010-08-16 20:07:53 -0500 (Mon, 16 Aug 2010) | 1 line

  use assertTrue/assertFalse
........

14 years agoMerged revisions 84109 via svnmerge from
Brian Curtin [Mon, 16 Aug 2010 20:54:48 +0000 (20:54 +0000)]
Merged revisions 84109 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84109 | brian.curtin | 2010-08-16 15:50:03 -0500 (Mon, 16 Aug 2010) | 2 lines

  Mark myself as assignable for winreg, and put myself down for Windows.
........

14 years agoMerged revisions 84106 via svnmerge from
Alexander Belopolsky [Mon, 16 Aug 2010 20:30:26 +0000 (20:30 +0000)]
Merged revisions 84106 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84106 | alexander.belopolsky | 2010-08-16 16:17:07 -0400 (Mon, 16 Aug 2010) | 1 line

  Issue #8983: Corrected docstrings.
........

14 years agoThis test was not expected in r84100 (not yet ready).
Florent Xicluna [Mon, 16 Aug 2010 19:33:48 +0000 (19:33 +0000)]
This test was not expected in r84100 (not yet ready).

14 years agoMerged revisions 84097,84099 via svnmerge from
Florent Xicluna [Mon, 16 Aug 2010 19:22:18 +0000 (19:22 +0000)]
Merged revisions 84097,84099 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84097 | florent.xicluna | 2010-08-16 20:41:19 +0200 (lun., 16 août 2010) | 1 line

  Use test.support and unittest features.  Fix duplicated test (bad merge in r79033).  Fix comment for issue #7902.
........
  r84099 | florent.xicluna | 2010-08-16 21:03:05 +0200 (lun., 16 août 2010) | 1 line

  I get it wrong in r84097: s/relative/absolute/
........

14 years agoMerged revisions 84089 via svnmerge from
Giampaolo Rodolà [Mon, 16 Aug 2010 05:10:30 +0000 (05:10 +0000)]
Merged revisions 84089 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84089 | giampaolo.rodola | 2010-08-16 07:08:11 +0200 (lun, 16 ago 2010) | 1 line

  fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto'
........

14 years agoMerged revisions 84086 via svnmerge from
Antoine Pitrou [Mon, 16 Aug 2010 00:32:47 +0000 (00:32 +0000)]
Merged revisions 84086 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84086 | antoine.pitrou | 2010-08-16 02:28:05 +0200 (lun., 16 août 2010) | 3 lines

  Save and restore the global asyncore.socket_map, and warn if a test modified it
........

14 years agoMerged revisions 84065 via svnmerge from
Mark Dickinson [Sun, 15 Aug 2010 09:54:37 +0000 (09:54 +0000)]
Merged revisions 84065 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84065 | mark.dickinson | 2010-08-15 10:43:29 +0100 (Sun, 15 Aug 2010) | 1 line

  Clarify whatsnew entry for short float repr:  roundtripping is not a new feature in 2.7.
........

14 years agoFix bad merge
Éric Araujo [Sun, 15 Aug 2010 00:49:35 +0000 (00:49 +0000)]
Fix bad merge

14 years agoMerged revisions 84050 via svnmerge from
Éric Araujo [Sat, 14 Aug 2010 23:51:39 +0000 (23:51 +0000)]
Merged revisions 84050 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84050 | eric.araujo | 2010-08-15 01:44:13 +0200 (dim., 15 août 2010) | 1 line

  Fix typo
........

14 years agoSynchronize maintainers.rst
Éric Araujo [Sat, 14 Aug 2010 23:50:55 +0000 (23:50 +0000)]
Synchronize maintainers.rst

14 years agoBlocked revisions 83294,83319,84019,84036,84038-84039 via svnmerge
Florent Xicluna [Sat, 14 Aug 2010 22:30:34 +0000 (22:30 +0000)]
Blocked revisions 83294,83319,84019,84036,84038-84039 via svnmerge

........
  r83294 | senthil.kumaran | 2010-07-30 21:34:36 +0200 (ven., 30 juil. 2010) | 2 lines

  Fix issue9301 - handle unquote({}) kind of case.
........
  r83319 | florent.xicluna | 2010-07-31 10:56:55 +0200 (sam., 31 juil. 2010) | 2 lines

  Fix an oversight in r83294.  unquote() should reject bytes.  Issue #9301.
........
  r84019 | florent.xicluna | 2010-08-14 17:56:42 +0200 (sam., 14 août 2010) | 11 lines

  Merged manually from 2.7 branch to 3.x trunk.

    ------------------------------------------------------------------------
    r79925 | nick.coghlan | 2010-04-10 16:24:36 +0200 (sam. 10 avril 2010)

    Try to turn some buildbots green by allowing test_multiprocessing to
    pass even if it hits the sys.exc_clear code in the threading module, and
    improve the test coverage by making the ctypes dependencies a bit more
    granular (two of the cited ctypes objects don't exist on my system)
    ------------------------------------------------------------------------
........
  r84036 | florent.xicluna | 2010-08-14 20:03:19 +0200 (sam., 14 août 2010) | 1 line

  Remove bad merge (from svnmerge r82301)
........
  r84038 | florent.xicluna | 2010-08-14 20:30:35 +0200 (sam., 14 août 2010) | 1 line

  Silence the BytesWarning, due to patch r83294 for #9301
........
  r84039 | florent.xicluna | 2010-08-14 22:51:58 +0200 (sam., 14 août 2010) | 1 line

  Silence BytesWarning while testing exception
........

14 years agoMerged revisions 84025,84028,84032 via svnmerge from
Florent Xicluna [Sat, 14 Aug 2010 22:23:27 +0000 (22:23 +0000)]
Merged revisions 84025,84028,84032 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84025 | florent.xicluna | 2010-08-14 18:56:27 +0200 (sam., 14 août 2010) | 1 line

  List Misc/python-config.in in Misc/README.  Fix few typos.
........
  r84028 | florent.xicluna | 2010-08-14 19:02:49 +0200 (sam., 14 août 2010) | 1 line

  Fix order.
........
  r84032 | florent.xicluna | 2010-08-14 19:15:31 +0200 (sam., 14 août 2010) | 1 line

  Convert to spaces.
........

14 years agoMerged revisions 84021-84023 via svnmerge from
Antoine Pitrou [Sat, 14 Aug 2010 17:28:36 +0000 (17:28 +0000)]
Merged revisions 84021-84023 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84021 | antoine.pitrou | 2010-08-14 18:24:38 +0200 (sam., 14 août 2010) | 4 lines

  Add a reasonable timeout to network SSL tests, so as to avoid buildbot timeouts
  when the remote server doesn't answer.
........
  r84022 | antoine.pitrou | 2010-08-14 18:32:10 +0200 (sam., 14 août 2010) | 4 lines

  This is a better resolution than r84021 (because it will also affect
  ssl.get_server_certificate()).
........
  r84023 | antoine.pitrou | 2010-08-14 18:33:38 +0200 (sam., 14 août 2010) | 3 lines

  There doesn't seem to be a reason for this test to be disabled.
........

14 years agoMerged revisions 84024 via svnmerge from
Giampaolo Rodolà [Sat, 14 Aug 2010 17:04:46 +0000 (17:04 +0000)]
Merged revisions 84024 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r84024 | giampaolo.rodola | 2010-08-14 18:45:41 +0200 (sab, 14 ago 2010) | 1 line

  fix issue #8857: provide a test case for socket.getaddrinfo
........

14 years agoSynchronize maintainers.rst
Éric Araujo [Sat, 14 Aug 2010 15:25:50 +0000 (15:25 +0000)]
Synchronize maintainers.rst

14 years agoFix one module name in maintainers.rst, add me
Éric Araujo [Sat, 14 Aug 2010 05:09:47 +0000 (05:09 +0000)]
Fix one module name in maintainers.rst, add me

14 years agoMerged revisions 83999,84001 via svnmerge from
Éric Araujo [Sat, 14 Aug 2010 05:07:46 +0000 (05:07 +0000)]
Merged revisions 83999,84001 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83999 | eric.araujo | 2010-08-14 06:55:45 +0200 (sam., 14 août 2010) | 2 lines

  Fix reference (follow-up to #9061)
........
  r84001 | eric.araujo | 2010-08-14 07:00:18 +0200 (sam., 14 août 2010) | 2 lines

  Oops, fix typo
........

14 years agoSynchronize maintainers.rst with 3.2
Éric Araujo [Sat, 14 Aug 2010 03:31:41 +0000 (03:31 +0000)]
Synchronize maintainers.rst with 3.2

14 years agoMerged revisions 83993 via svnmerge from
Éric Araujo [Sat, 14 Aug 2010 03:07:46 +0000 (03:07 +0000)]
Merged revisions 83993 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83993 | eric.araujo | 2010-08-14 04:30:34 +0200 (sam., 14 août 2010) | 2 lines

  Use a marker in generated MANIFEST files, don't touch files without it. Fixes #8688.
........

14 years agoMerged revisions 83983 via svnmerge from
Brian Curtin [Fri, 13 Aug 2010 21:01:52 +0000 (21:01 +0000)]
Merged revisions 83983 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83983 | brian.curtin | 2010-08-13 15:42:57 -0500 (Fri, 13 Aug 2010) | 3 lines

  Fix #9588. Add sys.executable to two shell=True tests.
........

14 years agoMerged revisions 83959-83960 via svnmerge from
Antoine Pitrou [Thu, 12 Aug 2010 15:25:51 +0000 (15:25 +0000)]
Merged revisions 83959-83960 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r83959 | antoine.pitrou | 2010-08-12 17:11:50 +0200 (jeu., 12 août 2010) | 5 lines

  Issue #7467: when a file from a ZIP archive, its CRC is checked and a
  BadZipfile error is raised if it doesn't match (as used to be the
  case in Python 2.5 and earlier).
........
  r83960 | antoine.pitrou | 2010-08-12 17:15:01 +0200 (jeu., 12 août 2010) | 3 lines

  Typo.
........

14 years ago#9055: remove assertion at the end of test_8959_b since the test is about crashing...
Tim Golden [Thu, 12 Aug 2010 11:50:14 +0000 (11:50 +0000)]
#9055: remove assertion at the end of test_8959_b since the test is about crashing, not about counting and is difficult to manage when run as a service

14 years ago#2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu as...
Tim Golden [Thu, 12 Aug 2010 11:00:35 +0000 (11:00 +0000)]
#2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu as well as Windows

14 years agoBlocked revisions 83949 via svnmerge
Alexander Belopolsky [Wed, 11 Aug 2010 22:23:17 +0000 (22:23 +0000)]
Blocked revisions 83949 via svnmerge

........
  r83949 | alexander.belopolsky | 2010-08-11 13:31:17 -0400 (Wed, 11 Aug 2010) | 4 lines

  Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
  va_copy, but available on all python platforms.  Untabified a few
  unrelated files.
........