[Python-checkins] r81328 - python/branches/release26-maint

georg.brandl python-checkins at python.org
Wed May 19 15:08:36 CEST 2010


Author: georg.brandl
Date: Wed May 19 15:08:36 2010
New Revision: 81328

Log:
Blocked revisions 74000-74002,74005-74007,74011,74014,74019,74023-74024,74028-74029,74031-74033,74038-74039,74044,74048,74051,74067,74069,74072,74080,74083,74089,74095,74098,74100,74114,74117,74119,74123,74134,74139,74147,74150,74152,74163,74173,74187,74197,74201,74216,74219,74240,74243,74265,74269,74277,74300,74312,74321,74323,74336,74355,74365,74426,74446-74449,74463-74464,74471-74472,74477,74479,74490,74493,74495,74501,74503,74507-74511,74513,74517,74519,74522-74524,74526,74537,74542-74543,74556,74558,74569-74571,74581,74604,74625,74635-74637,74640,74644,74650,74667,74699,74702,74715,74721,74723,74733-74734,74750,74754,74780,74783,74785-74786,74811-74812,74843,74849,74853,74860,74886,74901,74908,74912-74913,74925,74929,74936-74937,74954-74955,74970,74988,74992,74994,74997 via svnmerge

................
  r74000 | amaury.forgeotdarc | 2009-07-13 22:01:11 +0200 (Mo, 13 Jul 2009) | 4 lines
  
  #1616979: Add the cp720 (Arabic DOS) encoding.
  Since there is no official mapping file from unicode.org,
  the codec file is generated on Windows with the new genwincodec.py script.
................
  r74001 | amaury.forgeotdarc | 2009-07-13 22:03:21 +0200 (Mo, 13 Jul 2009) | 2 lines
  
  NEWS entry for r74000.
................
  r74002 | marc-andre.lemburg | 2009-07-13 22:23:49 +0200 (Mo, 13 Jul 2009) | 6 lines
  
  Use a new global DEV_NULL instead of hard-coding /dev/null into the system
  command helper functions.
  
  See #6479 for some motivation.
................
  r74005 | marc-andre.lemburg | 2009-07-13 23:28:33 +0200 (Mo, 13 Jul 2009) | 6 lines
  
  Use a different VER command output parser to address the localization
  issues mentioned in #3410.
  
  Prepare for Windows 7 (still commented out).
................
  r74006 | amaury.forgeotdarc | 2009-07-14 01:11:54 +0200 (Di, 14 Jul 2009) | 2 lines
  
  Document the newly added codec
................
  r74007 | michael.foord | 2009-07-14 19:58:12 +0200 (Di, 14 Jul 2009) | 1 line
  
  Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418.
................
  r74011 | ezio.melotti | 2009-07-15 19:07:04 +0200 (Mi, 15 Jul 2009) | 1 line
  
  methods' names pep8ification
................
  r74014 | alexandre.vassalotti | 2009-07-15 20:19:47 +0200 (Mi, 15 Jul 2009) | 3 lines
  
  Issue #2389: Pickle array objects using a list representation for portability
  across different machine architectures and compatibility with Python 3.x.
................
  r74019 | amaury.forgeotdarc | 2009-07-15 23:29:27 +0200 (Mi, 15 Jul 2009) | 2 lines
  
  #6076 Add a title to the IDLE Preferences window.
................
  r74023 | jesse.noller | 2009-07-16 16:23:04 +0200 (Do, 16 Jul 2009) | 1 line
  
  Issue 6433: multiprocessing.pool.map hangs on empty list
................
  r74024 | tarek.ziade | 2009-07-16 17:35:45 +0200 (Do, 16 Jul 2009) | 1 line
  
  #6466 refactored distutils duplicate get_versions() functions (used to get gcc/ld/dllwrap versions)
................
  r74028 | georg.brandl | 2009-07-16 21:24:48 +0200 (Do, 16 Jul 2009) | 1 line
  
  #6482: simplify "except: raise" to "finally:".
................
  r74029 | georg.brandl | 2009-07-16 23:47:51 +0200 (Do, 16 Jul 2009) | 1 line
  
  Revert r74028.
................
  r74031 | alexandre.vassalotti | 2009-07-17 06:24:45 +0200 (Fr, 17 Jul 2009) | 2 lines
  
  Use AC_CHECK_SIZEOF to find the size of off_t, pthread_t and time_t.
................
  r74032 | alexandre.vassalotti | 2009-07-17 06:59:05 +0200 (Fr, 17 Jul 2009) | 4 lines
  
  Rename the useless AC_INCLUDES_DEFAULT and protect the includes.
  
  This is mostly an aesthetic change.
................
  r74033 | alexandre.vassalotti | 2009-07-17 07:26:39 +0200 (Fr, 17 Jul 2009) | 8 lines
  
  Cache the results of all runtime checks.
  
  This will be helpful to people who want to compile Python with a 
  cross-compiler. Now you can upload the configure script on your host
  machine, run it with caching enabled, and download the cached results
  on your build machine.
................
  r74038 | alexandre.vassalotti | 2009-07-17 08:10:06 +0200 (Fr, 17 Jul 2009) | 3 lines
  
  Double-quote the test cases for chflags() and lchflags()
  to ensure they don't get mangled.
................
  r74039 | alexandre.vassalotti | 2009-07-17 08:17:33 +0200 (Fr, 17 Jul 2009) | 2 lines
  
  Clean up the test case for broken poll().
................
  r74044 | alexandre.vassalotti | 2009-07-17 08:33:51 +0200 (Fr, 17 Jul 2009) | 3 lines
  
  Double-quote the test case for %zd printf() format support to avoid
  mangling the array declarations in it.
................
  r74048 | alexandre.vassalotti | 2009-07-17 09:46:46 +0200 (Fr, 17 Jul 2009) | 2 lines
  
  Regenerate configure script.
................
  r74051 | alexandre.vassalotti | 2009-07-17 09:54:23 +0200 (Fr, 17 Jul 2009) | 2 lines
  
  Initialize variables in PyCurses_getsyx() to avoid compiler warnings.
................
  r74067 | alexandre.vassalotti | 2009-07-18 01:09:02 +0200 (Sa, 18 Jul 2009) | 2 lines
  
  Revert r74048.
................
  r74069 | alexandre.vassalotti | 2009-07-18 01:17:48 +0200 (Sa, 18 Jul 2009) | 2 lines
  
  Regenerate configure script using autoconf 2.61.
................
  r74072 | alexandre.vassalotti | 2009-07-18 02:31:06 +0200 (Sa, 18 Jul 2009) | 5 lines
  
  Add a check to ensure the correct autoconf version is used
  for generating the configure script.
  
  Original idea by Martin von Löwis.
................
  r74080 | mark.dickinson | 2009-07-18 17:18:18 +0200 (Sa, 18 Jul 2009) | 3 lines
  
  Issue #6431:  Fix Fraction comparisons with unknown types, and with
  float infinities and nans.  Backport of r74078 from py3k.
................
  r74083 | mark.dickinson | 2009-07-18 18:01:57 +0200 (Sa, 18 Jul 2009) | 1 line
  
  Add Case Van Horsen to Misc/ACKS, for fractions module patches and other work
................
  r74089 | senthil.kumaran | 2009-07-19 04:43:43 +0200 (So, 19 Jul 2009) | 3 lines
  
  Fix for issue5102, timeout value propages between redirects, proxy, digest and
  auth handlers. Fixed tests to reflect the same.
................
  r74095 | benjamin.peterson | 2009-07-19 22:18:21 +0200 (So, 19 Jul 2009) | 1 line
  
  split unittest.py into a package
................
  r74098 | kristjan.jonsson | 2009-07-20 00:14:00 +0200 (Mo, 20 Jul 2009) | 2 lines
  
  http://bugs.python.org/issue6499
  zlib/gzip may not be present for all builds.  Make xmlrpclib gracefully not supporg gzip encoding in this case
................
  r74100 | kristjan.jonsson | 2009-07-20 00:35:44 +0200 (Mo, 20 Jul 2009) | 2 lines
  
  http://bugs.python.org/issue6499
  gzip.GzipFile may not exist as a parent class
................
  r74114 | benjamin.peterson | 2009-07-20 17:33:09 +0200 (Mo, 20 Jul 2009) | 110 lines
  
  Merged revisions 73771,73811,73840,73842,73848-73849,73861,73957-73960,73964-73969,73972-73974,73977,73981,73984,74065,74113 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
  
  ........
    r73771 | benjamin.peterson | 2009-07-02 10:56:55 -0500 (Thu, 02 Jul 2009) | 1 line
    
    force the imports fixer to be run after the import one #6400
  ........
    r73811 | benjamin.peterson | 2009-07-03 09:03:14 -0500 (Fri, 03 Jul 2009) | 1 line
    
    check for sep, not pathsep when looking for a subpackage #6408
  ........
    r73840 | benjamin.peterson | 2009-07-04 09:52:28 -0500 (Sat, 04 Jul 2009) | 1 line
    
    don't print diffs by default; it's annoying
  ........
    r73842 | benjamin.peterson | 2009-07-04 09:58:46 -0500 (Sat, 04 Jul 2009) | 1 line
    
    complain when not showing diffs or writing
  ........
    r73848 | alexandre.vassalotti | 2009-07-04 23:38:19 -0500 (Sat, 04 Jul 2009) | 2 lines
    
    Fix test_refactor_stdin to handle print_output() method with 4 arguments.
  ........
    r73849 | alexandre.vassalotti | 2009-07-04 23:43:18 -0500 (Sat, 04 Jul 2009) | 5 lines
    
    Issue 2370: Add fixer for the removal of operator.isCallable() and
    operator.sequenceIncludes().
    
    Patch contributed by Jeff Balogh (and updated by me).
  ........
    r73861 | benjamin.peterson | 2009-07-05 09:15:53 -0500 (Sun, 05 Jul 2009) | 1 line
    
    cleanup and use unicode where appropiate
  ........
    r73957 | benjamin.peterson | 2009-07-11 15:49:56 -0500 (Sat, 11 Jul 2009) | 1 line
    
    fix calls to str() with unicode()
  ........
    r73958 | benjamin.peterson | 2009-07-11 15:51:51 -0500 (Sat, 11 Jul 2009) | 1 line
    
    more str() -> unicode()
  ........
    r73959 | benjamin.peterson | 2009-07-11 16:40:08 -0500 (Sat, 11 Jul 2009) | 1 line
    
    add tests for refactor_dir()
  ........
    r73960 | benjamin.peterson | 2009-07-11 16:44:32 -0500 (Sat, 11 Jul 2009) | 1 line
    
    don't parse files just because they end with 'py' (no dot)
  ........
    r73964 | benjamin.peterson | 2009-07-11 17:30:15 -0500 (Sat, 11 Jul 2009) | 1 line
    
    simplify
  ........
    r73965 | benjamin.peterson | 2009-07-11 17:31:30 -0500 (Sat, 11 Jul 2009) | 1 line
    
    remove usage of get_prefix()
  ........
    r73966 | benjamin.peterson | 2009-07-11 17:33:35 -0500 (Sat, 11 Jul 2009) | 1 line
    
    revert unintended change in 73965
  ........
    r73967 | benjamin.peterson | 2009-07-11 17:34:44 -0500 (Sat, 11 Jul 2009) | 1 line
    
    avoid expensive checks and assume the node did change
  ........
    r73968 | benjamin.peterson | 2009-07-11 20:46:46 -0500 (Sat, 11 Jul 2009) | 1 line
    
    use a regular dict for the heads to avoid adding lists in the loop
  ........
    r73969 | benjamin.peterson | 2009-07-11 20:50:43 -0500 (Sat, 11 Jul 2009) | 1 line
    
    prefix headnode functions with '_'
  ........
    r73972 | benjamin.peterson | 2009-07-11 21:25:45 -0500 (Sat, 11 Jul 2009) | 1 line
    
    try to make the head node dict as sparse as possible
  ........
    r73973 | benjamin.peterson | 2009-07-11 21:59:49 -0500 (Sat, 11 Jul 2009) | 1 line
    
    a better idea; add an option to *not* print diffs
  ........
    r73974 | benjamin.peterson | 2009-07-11 22:00:29 -0500 (Sat, 11 Jul 2009) | 1 line
    
    add space
  ........
    r73977 | benjamin.peterson | 2009-07-12 10:16:07 -0500 (Sun, 12 Jul 2009) | 1 line
    
    update get_headnode_dict tests for recent changes
  ........
    r73981 | benjamin.peterson | 2009-07-12 12:06:39 -0500 (Sun, 12 Jul 2009) | 4 lines
    
    detect when "from __future__ import print_function" is given
    
    Deprecate the 'print_function' option and the -p flag
  ........
    r73984 | benjamin.peterson | 2009-07-12 16:16:37 -0500 (Sun, 12 Jul 2009) | 1 line
    
    add tests for Call; thanks Joe Amenta
  ........
    r74065 | benjamin.peterson | 2009-07-17 12:52:49 -0500 (Fri, 17 Jul 2009) | 1 line
    
    pathname2url and url2pathname are in urllib.request not urllib.parse #6496
  ........
    r74113 | benjamin.peterson | 2009-07-20 08:56:57 -0500 (Mon, 20 Jul 2009) | 1 line
    
    fix deprecation warnings in tests
  ........
................
  r74117 | benjamin.peterson | 2009-07-20 19:24:30 +0200 (Mo, 20 Jul 2009) | 9 lines
  
  Merged revisions 74116 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
  
  ........
    r74116 | benjamin.peterson | 2009-07-20 12:22:35 -0500 (Mon, 20 Jul 2009) | 1 line
    
    placate windows
  ........
................
  r74119 | benjamin.peterson | 2009-07-20 22:28:08 +0200 (Mo, 20 Jul 2009) | 2 lines
  
  the Slice in x[::] has to have step as None to help the interpreter
................
  r74123 | benjamin.peterson | 2009-07-20 23:09:45 +0200 (Mo, 20 Jul 2009) | 13 lines
  
  Merged revisions 74121-74122 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
  
  ........
    r74121 | benjamin.peterson | 2009-07-20 15:40:59 -0500 (Mon, 20 Jul 2009) | 1 line
    
    try to make warning tests more robust
  ........
    r74122 | benjamin.peterson | 2009-07-20 15:44:14 -0500 (Mon, 20 Jul 2009) | 1 line
    
    platform compat
  ........
................
  r74134 | thomas.heller | 2009-07-21 08:27:14 +0200 (Di, 21 Jul 2009) | 3 lines
  
  Issue #6493: Fix a ctypes problem setting bitfields more than 31 bits
  wide.
................
  r74139 | benjamin.peterson | 2009-07-21 16:08:40 +0200 (Di, 21 Jul 2009) | 1 line
  
  must use _PyThreadState_Current so it isn't checked for NULL #6530
................
  r74147 | thomas.heller | 2009-07-21 21:04:02 +0200 (Di, 21 Jul 2009) | 1 line
  
  Revert rev 74134, as it does not completely fixx issue #6493.
................
  r74150 | benjamin.peterson | 2009-07-22 01:13:14 +0200 (Mi, 22 Jul 2009) | 1 line
  
  install unittest as a package
................
  r74152 | benjamin.peterson | 2009-07-22 02:03:43 +0200 (Mi, 22 Jul 2009) | 1 line
  
  simplify
................
  r74163 | tarek.ziade | 2009-07-22 10:55:19 +0200 (Mi, 22 Jul 2009) | 1 line
  
  Issue #6545: Removed assert statements in distutils.Extension, so the behavior is similar when used with -O
................
  r74173 | benjamin.peterson | 2009-07-22 18:34:37 +0200 (Mi, 22 Jul 2009) | 1 line
  
  revert r74152
................
  r74187 | benjamin.peterson | 2009-07-23 16:19:08 +0200 (Do, 23 Jul 2009) | 1 line
  
  use bools for autoraise
................
  r74197 | benjamin.peterson | 2009-07-25 04:03:48 +0200 (Sa, 25 Jul 2009) | 1 line
  
  clarify
................
  r74201 | amaury.forgeotdarc | 2009-07-25 18:22:06 +0200 (Sa, 25 Jul 2009) | 2 lines
  
  Better name a variable: 'buf' seems to imply a mutable buffer.
................
  r74216 | michael.foord | 2009-07-26 23:12:14 +0200 (So, 26 Jul 2009) | 1 line
  
  Issue 6581. Michael Foord
................
  r74219 | eric.smith | 2009-07-27 03:58:25 +0200 (Mo, 27 Jul 2009) | 1 line
  
  Sync trunk and py3k versions of string formatting. Will manually merge into py3k.
................
  r74240 | mark.dickinson | 2009-07-28 22:35:03 +0200 (Di, 28 Jul 2009) | 4 lines
  
  Issue #6561: '\d' regular expression should not match characters of
  category [No]; only those of category [Nd].  (Backport of r74237
  from py3k.)
................
  r74243 | amaury.forgeotdarc | 2009-07-28 22:47:55 +0200 (Di, 28 Jul 2009) | 2 lines
  
  "Fix" for the refleak report: the ABC classes are now in the _pyio module
................
  r74265 | mark.dickinson | 2009-07-30 12:00:10 +0200 (Do, 30 Jul 2009) | 1 line
  
  Documentation fix for change introduced in r71832
................
  r74269 | eric.smith | 2009-07-30 15:39:44 +0200 (Do, 30 Jul 2009) | 1 line
  
  Issue 6330: Fix --enable-unicode=ucs4.
................
  r74277 | sean.reifschneider | 2009-08-02 01:54:55 +0200 (So, 02 Aug 2009) | 3 lines
  
  - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with
    NUL: Bogus TypeError detail string.
................
  r74300 | raymond.hettinger | 2009-08-04 21:08:05 +0200 (Di, 04 Aug 2009) | 1 line
  
  Issue 6637: defaultdict.copy() failed with an empty factory.
................
  r74312 | mark.dickinson | 2009-08-04 23:56:04 +0200 (Di, 04 Aug 2009) | 4 lines
  
  Issue #6620: Slightly safer code for _grouping_intervals in the locale
  module.  Fixes a 'possible use before assignment' warning from pylint.
  Thanks Vincent Legoll.
................
  r74321 | guilherme.polo | 2009-08-05 18:51:41 +0200 (Mi, 05 Aug 2009) | 1 line
  
  Easier reference to find (at least while svn continues being used).
................
  r74323 | guilherme.polo | 2009-08-06 01:48:26 +0200 (Do, 06 Aug 2009) | 1 line
  
  Typo.
................
  r74336 | antoine.pitrou | 2009-08-06 22:18:29 +0200 (Do, 06 Aug 2009) | 8 lines
  
  Issue #6629: Fix a data corruption issue in the new `io` package, which could
  occur when writing to a BufferedRandom object (e.g. a file opened in "rb+" or
  "wb+" mode) after having buffered a certain amount of data for reading. This
  bug was not present in the pure Python implementation.
  
  Yes, this is a serious issue.
................
  r74355 | gregory.p.smith | 2009-08-12 19:02:37 +0200 (Mi, 12 Aug 2009) | 2 lines
  
  comment typo fix
................
  r74365 | georg.brandl | 2009-08-13 09:48:05 +0200 (Do, 13 Aug 2009) | 1 line
  
  #6679: Remove mention that sub supports no flags.
................
  r74426 | gregory.p.smith | 2009-08-13 20:54:50 +0200 (Do, 13 Aug 2009) | 4 lines
  
  Fix issue1628205: Socket file objects returned by socket.socket.makefile() now
  properly handles EINTR within the read, readline, write & flush methods.
  The socket.sendall() method now properly handles interrupted system calls.
................
  r74446 | guilherme.polo | 2009-08-14 15:53:41 +0200 (Fr, 14 Aug 2009) | 1 line
  
  Issue #3344: Replace itertools.count by enumerate.
................
  r74447 | guilherme.polo | 2009-08-14 16:03:07 +0200 (Fr, 14 Aug 2009) | 1 line
  
  Issue #3926: Fix the usage of the new showwarnings and formatwarning.
................
  r74448 | guilherme.polo | 2009-08-14 16:36:45 +0200 (Fr, 14 Aug 2009) | 3 lines
  
  Issue #1135: Add the XView and YView mix-ins to avoid duplicating
  the xview* and yview* methods.
................
  r74449 | guilherme.polo | 2009-08-14 16:43:43 +0200 (Fr, 14 Aug 2009) | 1 line
  
  Clarifying Entry.selection_present's docstring.
................
  r74463 | gregory.p.smith | 2009-08-16 00:39:03 +0200 (So, 16 Aug 2009) | 6 lines
  
  Force the http connection to close after any request returned when
  buffering=True as our buffered data is not known to the HTTPConnection and may
  contain data needed by a future request if the connection were left open.
  
  See http://bugs.python.org/issue2576 and http://bugs.python.org/issue4879.
................
  r74464 | benjamin.peterson | 2009-08-16 00:59:21 +0200 (So, 16 Aug 2009) | 4 lines
  
  better col_offsets for "for" statements with tuple unpacking #6704
  
  Patch from Frank Wierzbicki.
................
  r74471 | guilherme.polo | 2009-08-16 16:34:26 +0200 (So, 16 Aug 2009) | 1 line
  
  Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.
................
  r74472 | guilherme.polo | 2009-08-16 16:38:57 +0200 (So, 16 Aug 2009) | 1 line
  
  Wrong place for issue #6244.
................
  r74477 | frank.wierzbicki | 2009-08-16 22:22:51 +0200 (So, 16 Aug 2009) | 2 lines
  
  Add test of file.write(array) extracted from Jython.
................
  r74479 | gregory.p.smith | 2009-08-16 23:54:45 +0200 (So, 16 Aug 2009) | 2 lines
  
  Clean up the C library import code (based on suggestions in issue6281).
................
  r74490 | benjamin.peterson | 2009-08-17 15:39:41 +0200 (Mo, 17 Aug 2009) | 1 line
  
  typos
................
  r74493 | tarek.ziade | 2009-08-17 23:28:34 +0200 (Mo, 17 Aug 2009) | 1 line
  
  fixed how fnmatch.translate is used (since it has changed in r74475 for #6665). Now the code is not harcoding the usage of $ anymore
................
  r74495 | tarek.ziade | 2009-08-17 23:48:22 +0200 (Mo, 17 Aug 2009) | 1 line
  
  module cleanup
................
  r74501 | tarek.ziade | 2009-08-18 10:16:33 +0200 (Di, 18 Aug 2009) | 1 line
  
  added more test coverage for distutils.filelist to prevent regressions when fnmatch or re are changed
................
  r74503 | tarek.ziade | 2009-08-18 10:21:49 +0200 (Di, 18 Aug 2009) | 1 line
  
  fixed typo
................
  r74507 | guilherme.polo | 2009-08-18 15:23:08 +0200 (Di, 18 Aug 2009) | 1 line
  
  Issue #1119673: Do not override Tkinter.Text methods when creating a ScrolledText.
................
  r74508 | guilherme.polo | 2009-08-18 15:29:20 +0200 (Di, 18 Aug 2009) | 1 line
  
  Issue #1250469: Fix the return value of Tix.PanedWindow.panes.
................
  r74509 | guilherme.polo | 2009-08-18 15:33:30 +0200 (Di, 18 Aug 2009) | 1 line
  
  Mark the "radio" option of Tix.CheckList as static.
................
  r74510 | guilherme.polo | 2009-08-18 16:23:00 +0200 (Di, 18 Aug 2009) | 1 line
  
  Issue #1522587: New constants and methods for the Tix.Grid widget.
................
  r74511 | guilherme.polo | 2009-08-18 16:34:44 +0200 (Di, 18 Aug 2009) | 1 line
  
  Fixes for Tix.Grid from issue #1522587.
................
  r74513 | skip.montanaro | 2009-08-18 16:37:52 +0200 (Di, 18 Aug 2009) | 1 line
  
  missing module ref (issue6723)
................
  r74517 | guilherme.polo | 2009-08-18 16:46:57 +0200 (Di, 18 Aug 2009) | 1 line
  
  Issue #1356969: Add missing info methods in Tix.HList.
................
  r74519 | guilherme.polo | 2009-08-18 18:39:36 +0200 (Di, 18 Aug 2009) | 1 line
  
  Added missing static option for OptionMenu. Issue #5961.
................
  r74522 | gregory.p.smith | 2009-08-19 07:33:48 +0200 (Mi, 19 Aug 2009) | 8 lines
  
  Revert the changes from r74463, they were causing test_xmlrpc to fail.
  We do not need to force a close when using socket buffering on a
  httplib.HTTPRequest as the library does not support streaming requests
  so there should never been extra data beyond the end of the current
  request to have left over in the requests socket buffer.
  
  see http://bugs.python.org/issue6724
................
  r74523 | gregory.p.smith | 2009-08-20 11:38:43 +0200 (Do, 20 Aug 2009) | 2 lines
  
  comment typo fix
................
  r74524 | gregory.p.smith | 2009-08-20 11:39:38 +0200 (Do, 20 Aug 2009) | 2 lines
  
  Add weakref support to the thread.lock type.
................
  r74526 | tarek.ziade | 2009-08-20 23:23:13 +0200 (Do, 20 Aug 2009) | 1 line
  
  #6693: New functions in site.py to get user/global site packages paths.
................
  r74537 | tarek.ziade | 2009-08-21 16:28:38 +0200 (Fr, 21 Aug 2009) | 1 line
  
  fixed misplaced Issue line
................
  r74542 | georg.brandl | 2009-08-23 23:28:56 +0200 (So, 23 Aug 2009) | 1 line
  
  Restore alphabetic order.
................
  r74543 | kristjan.jonsson | 2009-08-24 13:39:31 +0200 (Mo, 24 Aug 2009) | 2 lines
  
  issue 6769
  fix a mistake in instantiatiating the HTTPSConnection class.
................
  r74556 | kristjan.jonsson | 2009-08-28 00:20:21 +0200 (Fr, 28 Aug 2009) | 2 lines
  
  issue 6275
  Add an "exc_value" attribute to the _AssertRaisesContext context manager in the unittest package.  This allows further tests on the exception that was raised after the context manager exits.
................
  r74558 | kristjan.jonsson | 2009-08-28 01:13:18 +0200 (Fr, 28 Aug 2009) | 2 lines
  
  Issue 6654
  Allow the XML-RPC server to use the HTTP request path when dispatching.  Added a MultiPathXMLRPCServer class that uses the feature, plus unit tests.
................
  r74569 | benjamin.peterson | 2009-08-28 18:48:03 +0200 (Fr, 28 Aug 2009) | 1 line
  
  restricted environments are no more
................
  r74570 | benjamin.peterson | 2009-08-28 18:49:56 +0200 (Fr, 28 Aug 2009) | 1 line
  
  remove more code for restricted execution
................
  r74571 | lars.gustaebel | 2009-08-28 21:23:44 +0200 (Fr, 28 Aug 2009) | 7 lines
  
  Issue #6054: Do not normalize stored pathnames.
  
  No longer use tarfile.normpath() on pathnames. Store pathnames
  unchanged, i.e. do not remove "./", "../" and "//" occurrences.
  However, still convert absolute to relative paths.
................
  r74581 | amaury.forgeotdarc | 2009-08-29 20:14:40 +0200 (Sa, 29 Aug 2009) | 3 lines
  
  #6750: TextIOWrapped could duplicate output when several threads write to it.
  this affect text files opened with io.open(), and the print() function of py3k
................
  r74604 | mark.dickinson | 2009-08-31 16:46:07 +0200 (Mo, 31 Aug 2009) | 1 line
  
  Issue #6297: Add autogenerated Misc/python.pc file to make distclean target.  Thanks Jerry Chen.
................
  r74625 | benjamin.peterson | 2009-09-02 00:27:57 +0200 (Mi, 02 Sep 2009) | 1 line
  
  remove the check that classmethod's argument is a callable
................
  r74635 | armin.rigo | 2009-09-03 21:40:07 +0200 (Do, 03 Sep 2009) | 2 lines
  
  Found the next crasher by thinking about this logic in PyPy.
................
  r74636 | armin.rigo | 2009-09-03 21:42:03 +0200 (Do, 03 Sep 2009) | 3 lines
  
  Does not terminate: consume all memory without responding to Ctrl-C.
  I am not too sure why, but you can surely find out by gdb'ing a bit...
................
  r74637 | armin.rigo | 2009-09-03 21:45:27 +0200 (Do, 03 Sep 2009) | 4 lines
  
  Sorry, sorry!  Ignore my previous two commits.  I mixed up the version
  of python with which I tried running the crashers.  They don't crash
  the current HEAD.
................
  r74640 | brett.cannon | 2009-09-03 23:25:21 +0200 (Do, 03 Sep 2009) | 7 lines
  
  test_platform fails on OS X Snow Leopard because the UNIX command to get the
  canonical version, sw_vers, leaves off trailing zeros in the version number
  (e.g. 10.6 instead of 10.6.0). Test now compensates by tacking on extra zeros
  for the test comparison.
  
  Fixes issue #6806.
................
  r74644 | georg.brandl | 2009-09-04 09:55:14 +0200 (Fr, 04 Sep 2009) | 1 line
  
  #5047: remove Monterey support from configure.
................
  r74650 | georg.brandl | 2009-09-04 13:19:34 +0200 (Fr, 04 Sep 2009) | 1 line
  
  #5101: add back tests to test_funcattrs that were lost during unittest conversion, and make some PEP8 cleanups.
................
  r74667 | mark.dickinson | 2009-09-05 12:27:00 +0200 (Sa, 05 Sep 2009) | 2 lines
  
  Add configure-time checks for gamma and error functions.
................
  r74699 | benjamin.peterson | 2009-09-07 00:43:39 +0200 (Mo, 07 Sep 2009) | 1 line
  
  PyObject_GetIter can set an error for its self just fine
................
  r74702 | benjamin.peterson | 2009-09-07 15:02:15 +0200 (Mo, 07 Sep 2009) | 1 line
  
  revert r74699 since it loses useful error information
................
  r74715 | ronald.oussoren | 2009-09-08 09:17:10 +0200 (Di, 08 Sep 2009) | 5 lines
  
  This is an update to r74701. How hard can it be to get a configure test right.
  
  This patch has already been backported as part of the backport of r74701,
  which is how I found this problem.
................
  r74721 | thomas.heller | 2009-09-08 21:24:36 +0200 (Di, 08 Sep 2009) | 1 line
  
  Make ctypes compile again with older Python versions.
................
  r74723 | mark.dickinson | 2009-09-08 22:20:19 +0200 (Di, 08 Sep 2009) | 3 lines
  
  Issue #6857: Fix Decimal formatting to be consistent with existing float
  formatting:  both are now right-aligned by default.
................
  r74733 | benjamin.peterson | 2009-09-09 13:40:54 +0200 (Mi, 09 Sep 2009) | 1 line
  
  tabbify
................
  r74734 | benjamin.peterson | 2009-09-09 13:42:57 +0200 (Mi, 09 Sep 2009) | 1 line
  
  revert unintended changes
................
  r74750 | lars.gustaebel | 2009-09-12 12:28:15 +0200 (Sa, 12 Sep 2009) | 9 lines
  
  Issue #6856: Add a filter keyword argument to TarFile.add().
  
  The filter argument must be a function that takes a TarInfo
  object argument, changes it and returns it again. If the
  function returns None the TarInfo object will be excluded
  from the archive.
  The exclude argument is deprecated from now on, because it
  does something similar but is not as flexible.
................
  r74754 | ezio.melotti | 2009-09-12 16:43:43 +0200 (Sa, 12 Sep 2009) | 1 line
  
  #6026 - fix tests that failed without zlib
................
  r74780 | michael.foord | 2009-09-13 18:40:02 +0200 (So, 13 Sep 2009) | 1 line
  
  Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
................
  r74783 | michael.foord | 2009-09-13 19:28:35 +0200 (So, 13 Sep 2009) | 1 line
  
  unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
................
  r74785 | michael.foord | 2009-09-13 21:07:03 +0200 (So, 13 Sep 2009) | 1 line
  
  Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
................
  r74786 | michael.foord | 2009-09-13 21:08:18 +0200 (So, 13 Sep 2009) | 1 line
  
  Remove an extraneous space in unittest documentation.
................
  r74811 | georg.brandl | 2009-09-15 22:26:59 +0200 (Di, 15 Sep 2009) | 1 line
  
  Add Armin Ronacher.
................
  r74812 | ronald.oussoren | 2009-09-15 23:24:07 +0200 (Di, 15 Sep 2009) | 3 lines
  
  Update distutils.util tests after my changes
  to --with-universal-archs
................
  r74843 | mark.dickinson | 2009-09-16 22:26:31 +0200 (Mi, 16 Sep 2009) | 4 lines
  
  Remove outdated include; this include was breaking OS X builds using
  non-Apple gcc4.3 and gcc4.4 (because CoreFoundation/CoreFoundation.h
  won't compile under non-Apple gcc).
................
  r74849 | thomas.wouters | 2009-09-16 22:36:34 +0200 (Mi, 16 Sep 2009) | 4 lines
  
  
  Add news entry for r74841.
................
  r74853 | mark.dickinson | 2009-09-17 00:10:56 +0200 (Do, 17 Sep 2009) | 5 lines
  
  Issue #6713:  Improve performance of str(n) and repr(n) for integers n
  (up to 3.1 times faster in tests), by special-casing base 10 in
  _PyLong_Format.  (Backport of r74851 from py3k.)
................
  r74860 | benjamin.peterson | 2009-09-17 04:46:54 +0200 (Do, 17 Sep 2009) | 1 line
  
  kill bare except
................
  r74886 | benjamin.peterson | 2009-09-17 23:33:46 +0200 (Do, 17 Sep 2009) | 1 line
  
  use macros
................
  r74901 | georg.brandl | 2009-09-18 11:14:52 +0200 (Fr, 18 Sep 2009) | 1 line
  
  #6905: use better exception messages in inspect when the argument is of the wrong type.
................
  r74908 | georg.brandl | 2009-09-18 15:57:11 +0200 (Fr, 18 Sep 2009) | 1 line
  
  Use str.format() to fix beginner's mistake with %-style string formatting.
................
  r74912 | georg.brandl | 2009-09-18 18:19:56 +0200 (Fr, 18 Sep 2009) | 1 line
  
  Optimize optimization and fix method name in docstring.
................
  r74913 | mark.dickinson | 2009-09-18 20:35:42 +0200 (Fr, 18 Sep 2009) | 2 lines
  
  Add Gawain Bolton to Misc/ACKS for his work on base 10 integer -> string optimizations.
................
  r74925 | mark.dickinson | 2009-09-18 23:01:50 +0200 (Fr, 18 Sep 2009) | 2 lines
  
  Use skipUnless to skip math module tests on non-IEEE 754 platforms.
................
  r74929 | benjamin.peterson | 2009-09-18 23:14:55 +0200 (Fr, 18 Sep 2009) | 1 line
  
  add keyword arguments support to str/unicode encode and decode #6300
................
  r74936 | benjamin.peterson | 2009-09-18 23:46:21 +0200 (Fr, 18 Sep 2009) | 1 line
  
  backport keyword argument support for bytearray.decode
................
  r74937 | benjamin.peterson | 2009-09-18 23:47:27 +0200 (Fr, 18 Sep 2009) | 1 line
  
  typo
................
  r74954 | georg.brandl | 2009-09-19 15:13:56 +0200 (Sa, 19 Sep 2009) | 1 line
  
  Add Doug.
................
  r74955 | georg.brandl | 2009-09-19 15:20:49 +0200 (Sa, 19 Sep 2009) | 1 line
  
  Add Mark Summerfield.
................
  r74970 | ronald.oussoren | 2009-09-20 16:18:15 +0200 (So, 20 Sep 2009) | 7 lines
  
  Issue 6877: this patch makes it possible to link the readline extension
  to the libedit emulation of the readline API on OSX 10.5 or later.
  
  This also adds a minimal testsuite for readline to check that the 
  history manipuation functions have the same interface with both
  C libraries.
................
  r74988 | tarek.ziade | 2009-09-21 14:19:07 +0200 (Mo, 21 Sep 2009) | 1 line
  
  improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch)
................
  r74992 | tarek.ziade | 2009-09-21 15:23:35 +0200 (Mo, 21 Sep 2009) | 1 line
  
  improving distutils coverage
................
  r74994 | tarek.ziade | 2009-09-21 15:41:08 +0200 (Mo, 21 Sep 2009) | 1 line
  
  #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils.
................
  r74997 | tarek.ziade | 2009-09-21 15:49:57 +0200 (Mo, 21 Sep 2009) | 1 line
  
  forgot to commit a file in previous commit (r74994, issue #6954)
................


Modified:
   python/branches/release26-maint/   (props changed)


More information about the Python-checkins mailing list