Commit Graph

42526 Commits

Author SHA1 Message Date
Georg Brandl 0371b9718e 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)
................
2010-05-19 13:08:36 +00:00
Georg Brandl 048e9683f7 Blocked revisions 73001-73002,73004,73006,73008,73027,73029,73031,73049,73060,73068,73071-73074,73076,73083,73109,73121,73135,73147,73151,73166,73170,73174,73182,73184,73190,73196-73197,73201,73212,73238,73240,73243,73247,73250,73252,73270,73272,73275,73278-73282,73303,73308,73312,73314,73317-73318,73321,73324-73326,73328,73331,73334-73336,73340,73345,73350,73353-73354,73361-73363,73367,73370,73372,73376,73382,73393-73398,73400-73402,73404-73405,73409,73415,73417-73423,73432-73433,73435-73436,73439,73445,73447-73448,73457,73460-73461,73465,73471-73472,73480,73485-73486,73488-73490,73495-73496,73499,73501-73502,73509,73513-73514,73518-73519,73532,73534,73536-73537,73540,73546,73563-73564,73603,73605-73606,73614-73615,73627,73638,73660,73665,73675,73679,73686,73688,73697,73701,73710,73712,73714,73717,73720,73725,73744,73750,73756-73757,73762,73767,73773,73781,73786,73801,73814-73815,73818-73819,73821-73822,73825-73827,73834,73839,73841,73846-73847,73854,73858,73863-73864,73871,73877,73884,73888,73891,73895,73901,73916,73925-73926,73930-73933,73944,73962-73963,73985-73986,73988-73991,73994-73995,73998,74000 via svnmerge
................
  r73001 | raymond.hettinger | 2009-05-29 03:36:26 +0200 (Fr, 29 Mai 2009) | 1 line

  Issue 5150: Add rstrip() option to IDLE's format menu.
................
  r73002 | raymond.hettinger | 2009-05-29 03:46:48 +0200 (Fr, 29 Mai 2009) | 3 lines

  Deprecate contextlib.nested().  The with-statement now provides this functionality directly.
................
  r73004 | jeffrey.yasskin | 2009-05-29 05:44:31 +0200 (Fr, 29 Mai 2009) | 5 lines

  Fix nearly all compilation warnings under Apple gcc-4.0.  Tested with OPT="-g
  -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
  There's still a batch of non-prototype warnings in Xlib.h that I don't know how
  to fix.
................
  r73006 | raymond.hettinger | 2009-05-29 06:58:52 +0200 (Fr, 29 Mai 2009) | 1 line

  Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.
................
  r73008 | tarek.ziade | 2009-05-29 10:08:07 +0200 (Fr, 29 Mai 2009) | 1 line

  Fixed #6131: test_modulefinder leaked when run after test_distutils
................
  r73027 | michael.foord | 2009-05-29 22:33:46 +0200 (Fr, 29 Mai 2009) | 1 line

  Add test discovery to unittest. Issue 6001.
................
  r73029 | raymond.hettinger | 2009-05-29 23:20:41 +0200 (Fr, 29 Mai 2009) | 1 line

  Move the basic examples section back to the beginning.
................
  r73031 | benjamin.peterson | 2009-05-29 23:48:19 +0200 (Fr, 29 Mai 2009) | 1 line

  add with statements
................
  r73049 | georg.brandl | 2009-05-30 12:45:40 +0200 (Sa, 30 Mai 2009) | 1 line

  Rewrap a few long lines.
................
  r73060 | gregory.p.smith | 2009-05-30 21:58:11 +0200 (Sa, 30 Mai 2009) | 2 lines

  Add more examples to the ipaddr documentation.
................
  r73068 | antoine.pitrou | 2009-05-30 23:45:40 +0200 (Sa, 30 Mai 2009) | 3 lines

  Update ACKS
................
  r73071 | georg.brandl | 2009-05-31 16:15:25 +0200 (So, 31 Mai 2009) | 1 line

  Fix markup.
................
  r73072 | antoine.pitrou | 2009-05-31 16:20:14 +0200 (So, 31 Mai 2009) | 4 lines

  Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running
  regression tests in parallel, shortening the total runtime.
................
  r73073 | benjamin.peterson | 2009-05-31 16:43:00 +0200 (So, 31 Mai 2009) | 1 line

  remove function import
................
  r73074 | benjamin.peterson | 2009-05-31 17:00:27 +0200 (So, 31 Mai 2009) | 1 line

  __enter__ and __exit__ must be on the class
................
  r73076 | antoine.pitrou | 2009-05-31 20:05:51 +0200 (So, 31 Mai 2009) | 4 lines

  Uninitialized file type would lead to __exit__ lookup failure when site.py
  tries to read *.pth files on interpreter startup.
................
  r73083 | guilherme.polo | 2009-05-31 23:31:21 +0200 (So, 31 Mai 2009) | 1 line

  Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the possible options and values are the same accepted by paneconfigure (not configure).
................
  r73109 | gregory.p.smith | 2009-06-01 19:40:41 +0200 (Mo, 01 Jun 2009) | 6 lines

  Sync up __version__ number with the version of the ipaddr-py project this
  library came from that it matches.

  Remove the former apache license text now that its been contributed to PSF to
  avoid confusion.
................
  r73121 | tarek.ziade | 2009-06-02 00:22:13 +0200 (Di, 02 Jun 2009) | 1 line

  improved distutils.dist test coverage, pep-8 compliancy
................
  r73135 | gregory.p.smith | 2009-06-02 07:25:34 +0200 (Di, 02 Jun 2009) | 3 lines

  Fixes issue6169: it was possible for two ipaddr network addresses to compare
  as both < and > than eachother.
................
  r73147 | tarek.ziade | 2009-06-02 17:58:43 +0200 (Di, 02 Jun 2009) | 1 line

  improved distutils.spawn test coverage + cleaned it up
................
  r73151 | michael.foord | 2009-06-02 20:08:27 +0200 (Di, 02 Jun 2009) | 1 line

  Restore default testRunner argument in unittest.main to None. Issue 6177
................
  r73166 | tarek.ziade | 2009-06-03 12:26:26 +0200 (Mi, 03 Jun 2009) | 1 line

  added some tests for distutils.extension + code cleanup
................
  r73170 | tarek.ziade | 2009-06-03 13:12:08 +0200 (Mi, 03 Jun 2009) | 1 line

  more cleanup and test coverage for distutils.extension
................
  r73174 | tarek.ziade | 2009-06-03 13:20:44 +0200 (Mi, 03 Jun 2009) | 1 line

  assertion message was dropped
................
  r73182 | josiah.carlson | 2009-06-03 21:46:21 +0200 (Mi, 03 Jun 2009) | 4 lines

  This fixes bug 5798 on OS X.
  This should also fix disconnect behavior cross-platform.
................
  r73184 | josiah.carlson | 2009-06-03 21:51:52 +0200 (Mi, 03 Jun 2009) | 2 lines

  Fix for line wrap ugly.
................
  r73190 | georg.brandl | 2009-06-04 01:23:45 +0200 (Do, 04 Jun 2009) | 2 lines

  Avoid PendingDeprecationWarnings emitted by deprecated unittest methods.
................
  r73196 | benjamin.peterson | 2009-06-04 03:40:29 +0200 (Do, 04 Jun 2009) | 1 line

  use the offical api
................
  r73197 | tarek.ziade | 2009-06-04 09:31:52 +0200 (Do, 04 Jun 2009) | 1 line

  improved test coverage for distutils.command.install and cleaned it up
................
  r73201 | georg.brandl | 2009-06-04 10:58:32 +0200 (Do, 04 Jun 2009) | 1 line

  #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do much validation and is no longer much faster than e.g. the cElementTree XMLParser.
................
  r73212 | georg.brandl | 2009-06-04 12:10:41 +0200 (Do, 04 Jun 2009) | 1 line

  Better name for "Ctor".
................
  r73238 | hirokazu.yamamoto | 2009-06-05 07:15:58 +0200 (Fr, 05 Jun 2009) | 1 line

  Fix test__locale on windows (Backport of r72365)
................
  r73240 | eric.smith | 2009-06-05 14:33:26 +0200 (Fr, 05 Jun 2009) | 1 line

  Removed tests so that test_float pass on Windows. See issue 6198.
................
  r73243 | tarek.ziade | 2009-06-05 15:37:29 +0200 (Fr, 05 Jun 2009) | 1 line

  reverting r72823 : Python trunk has to use latin-1 encoding
................
  r73247 | michael.foord | 2009-06-05 16:14:34 +0200 (Fr, 05 Jun 2009) | 1 line

  Fix unittest discovery tests for Windows. Issue 6199
................
  r73250 | benjamin.peterson | 2009-06-05 21:09:28 +0200 (Fr, 05 Jun 2009) | 1 line

  only test for named pipe when os.stat doesn't raise #6209
................
  r73252 | georg.brandl | 2009-06-06 07:54:34 +0200 (Sa, 06 Jun 2009) | 1 line

  #6206: fix test__locale.
................
  r73270 | benjamin.peterson | 2009-06-07 18:24:48 +0200 (So, 07 Jun 2009) | 1 line

  backport r73268
................
  r73272 | kristjan.jonsson | 2009-06-07 18:43:23 +0200 (So, 07 Jun 2009) | 2 lines

  http://bugs.python.org/issue6192
  Add a feature to disable the Nagle algorithm on sockets in TCPServer
................
  r73275 | georg.brandl | 2009-06-07 22:37:52 +0200 (So, 07 Jun 2009) | 1 line

  Add Ezio.
................
  r73278 | benjamin.peterson | 2009-06-08 00:33:11 +0200 (Mo, 08 Jun 2009) | 1 line

  inherit from object
................
  r73279 | benjamin.peterson | 2009-06-08 00:35:00 +0200 (Mo, 08 Jun 2009) | 1 line

  always inherit from an appropiate base class
................
  r73280 | benjamin.peterson | 2009-06-08 00:54:35 +0200 (Mo, 08 Jun 2009) | 1 line

  use booleans for flags
................
  r73281 | benjamin.peterson | 2009-06-08 00:55:36 +0200 (Mo, 08 Jun 2009) | 1 line

  remove has_key
................
  r73282 | benjamin.peterson | 2009-06-08 01:12:44 +0200 (Mo, 08 Jun 2009) | 1 line

  backport r73273
................
  r73303 | ronald.oussoren | 2009-06-08 22:54:59 +0200 (Mo, 08 Jun 2009) | 11 lines

  This checkin adds a symlink to the lib directory of a framework install
  of Python (on OSX), and the end result of that is that the combination of
  ``python-config --ldflags`` and ``python-config --libs`` refers to an actually
  existing location.

  I've done this in preference to changing python-config to specify
  '-framework Python' for linking because that doesn't work when you have multiple
  versions of python installed (because '-framework Python' will always link to
  the 'Current' version of the framework, without a possibility to specify a
  specific version).
................
  r73308 | benjamin.peterson | 2009-06-09 00:18:32 +0200 (Di, 09 Jun 2009) | 1 line

  remove useless assertion
................
  r73312 | benjamin.peterson | 2009-06-09 01:44:13 +0200 (Di, 09 Jun 2009) | 1 line

  remove error checks already done in set_context()
................
  r73314 | eric.smith | 2009-06-09 14:38:08 +0200 (Di, 09 Jun 2009) | 1 line

  Restored a test that was erroneously removed. See issue 6198.
................
  r73317 | benjamin.peterson | 2009-06-09 19:24:26 +0200 (Di, 09 Jun 2009) | 1 line

  make ast.c depend on the grammar
................
  r73318 | benjamin.peterson | 2009-06-09 19:29:51 +0200 (Di, 09 Jun 2009) | 1 line

  explain why keyword names are not just NAME
................
  r73321 | benjamin.peterson | 2009-06-09 23:13:43 +0200 (Di, 09 Jun 2009) | 1 line

  update symbol.py from with statement changes
................
  r73324 | amaury.forgeotdarc | 2009-06-10 00:53:16 +0200 (Mi, 10 Jun 2009) | 2 lines

  Avoid invoking the parser/compiler just to test the presence of a function.
................
  r73325 | amaury.forgeotdarc | 2009-06-10 01:08:13 +0200 (Mi, 10 Jun 2009) | 8 lines

  #6201: Fix test_winreg on Windows:
  since the introduction of the SETUP_WITH opcode,
  __enter__ and __exit__ methods must belong to the type,
  and are not retrieved at the instance level (__dict__ or __getattr__).

  Add a note in whatsnew about this incompatibility;
  old style classes are not affected.
................
  r73326 | amaury.forgeotdarc | 2009-06-10 01:18:50 +0200 (Mi, 10 Jun 2009) | 2 lines

  Both kind of types are concerned.
................
  r73328 | amaury.forgeotdarc | 2009-06-10 01:37:11 +0200 (Mi, 10 Jun 2009) | 3 lines

  Missing import in test_curses, uncovered by some buildbots.
  (There are still a few test files that don't use the standard layout)
................
  r73331 | benjamin.peterson | 2009-06-10 15:45:31 +0200 (Mi, 10 Jun 2009) | 1 line

  fix spelling
................
  r73334 | raymond.hettinger | 2009-06-10 18:15:02 +0200 (Mi, 10 Jun 2009) | 1 line

  Issue 6256: Fix stacklevel in warning message.
................
  r73335 | raymond.hettinger | 2009-06-10 18:15:40 +0200 (Mi, 10 Jun 2009) | 1 line

  Fix signed/unsigned compiler warning.
................
  r73336 | tarek.ziade | 2009-06-10 20:49:50 +0200 (Mi, 10 Jun 2009) | 1 line

  Distutils: started code cleanup and test coverage for cygwinccompiler
................
  r73340 | amaury.forgeotdarc | 2009-06-10 22:30:19 +0200 (Mi, 10 Jun 2009) | 2 lines

  Fix a typo spotted by Nick Coghlan.
................
  r73345 | tarek.ziade | 2009-06-11 10:43:26 +0200 (Do, 11 Jun 2009) | 1 line

  removed the last string.split() call
................
  r73350 | vinay.sajip | 2009-06-11 11:23:41 +0200 (Do, 11 Jun 2009) | 1 line

  Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler.
................
  r73353 | vinay.sajip | 2009-06-11 11:53:35 +0200 (Do, 11 Jun 2009) | 1 line

  Issue #5262: Improved fix.
................
  r73354 | tarek.ziade | 2009-06-11 11:55:09 +0200 (Do, 11 Jun 2009) | 1 line

  pep8-fied cygwinccompiler module
................
  r73361 | benjamin.peterson | 2009-06-11 18:25:52 +0200 (Do, 11 Jun 2009) | 1 line

  remove duplicate check
................
  r73362 | benjamin.peterson | 2009-06-11 19:49:38 +0200 (Do, 11 Jun 2009) | 1 line

  revert r73361
................
  r73363 | benjamin.peterson | 2009-06-11 19:51:17 +0200 (Do, 11 Jun 2009) | 1 line

  use multi-with syntax
................
  r73367 | raymond.hettinger | 2009-06-12 00:04:00 +0200 (Fr, 12 Jun 2009) | 1 line

  Add example of how to do key lookups with bisect().
................
  r73370 | benjamin.peterson | 2009-06-12 00:06:46 +0200 (Fr, 12 Jun 2009) | 105 lines

  Merged revisions 72523,72950-72951,72994,73003,73033,73036-73040,73091-73093,73096,73179-73181,73192,73231,73244,73255-73256,73365 via svnmerge from
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

  ........
    r72523 | benjamin.peterson | 2009-05-09 14:42:26 -0500 (Sat, 09 May 2009) | 1 line

    remove parenthesis
  ........
    r72950 | benjamin.peterson | 2009-05-26 18:19:45 -0500 (Tue, 26 May 2009) | 1 line

    remove unused imports
  ........
    r72951 | benjamin.peterson | 2009-05-26 18:27:00 -0500 (Tue, 26 May 2009) | 1 line

    this is no longer executable
  ........
    r72994 | benjamin.peterson | 2009-05-28 15:32:54 -0500 (Thu, 28 May 2009) | 1 line

    fix test_all_fixers on Windows #6134
  ........
    r73003 | benjamin.peterson | 2009-05-28 21:57:28 -0500 (Thu, 28 May 2009) | 4 lines

    make 2to3 test utilities easier to use with other applications (3to2)

    Patch by Joe Amenta
  ........
    r73033 | benjamin.peterson | 2009-05-29 16:58:32 -0500 (Fri, 29 May 2009) | 1 line

    update grammar for multi with statement
  ........
    r73036 | benjamin.peterson | 2009-05-29 17:33:20 -0500 (Fri, 29 May 2009) | 1 line

    simplify fix_unicode
  ........
    r73037 | benjamin.peterson | 2009-05-29 17:53:03 -0500 (Fri, 29 May 2009) | 1 line

    add custom error for pattern syntax errors
  ........
    r73038 | benjamin.peterson | 2009-05-29 17:55:00 -0500 (Fri, 29 May 2009) | 1 line

    complain if details are attached to a token
  ........
    r73039 | benjamin.peterson | 2009-05-29 18:00:28 -0500 (Fri, 29 May 2009) | 1 line

    add a test for whitespace
  ........
    r73040 | benjamin.peterson | 2009-05-29 18:01:17 -0500 (Fri, 29 May 2009) | 1 line

    a fix for emacs highlighting
  ........
    r73091 | benjamin.peterson | 2009-05-31 20:55:25 -0500 (Sun, 31 May 2009) | 1 line

    deprecate set_prefix() and get_prefix() in favor of a prefix property
  ........
    r73092 | benjamin.peterson | 2009-05-31 21:00:51 -0500 (Sun, 31 May 2009) | 1 line

    change hideous java naming scheme
  ........
    r73093 | benjamin.peterson | 2009-05-31 21:01:39 -0500 (Sun, 31 May 2009) | 1 line

    remove dated comment
  ........
    r73096 | benjamin.peterson | 2009-05-31 21:40:53 -0500 (Sun, 31 May 2009) | 1 line

    group tests
  ........
    r73179 | benjamin.peterson | 2009-06-03 13:09:53 -0500 (Wed, 03 Jun 2009) | 1 line

    handle the case where there's multiple trailers #6185
  ........
    r73180 | benjamin.peterson | 2009-06-03 13:18:05 -0500 (Wed, 03 Jun 2009) | 1 line

    scrap __main__ section
  ........
    r73181 | benjamin.peterson | 2009-06-03 13:24:48 -0500 (Wed, 03 Jun 2009) | 1 line

    remove shebang lines and __main__ sections
  ........
    r73192 | benjamin.peterson | 2009-06-03 19:16:30 -0500 (Wed, 03 Jun 2009) | 4 lines

    actually test something here

    Thanks to Joe Amenta for noticing.y
  ........
    r73231 | benjamin.peterson | 2009-06-04 13:38:50 -0500 (Thu, 04 Jun 2009) | 1 line

    remove unused variable
  ........
    r73244 | benjamin.peterson | 2009-06-05 08:39:25 -0500 (Fri, 05 Jun 2009) | 1 line

    allow fixers to give different options in setUp
  ........
    r73255 | benjamin.peterson | 2009-06-06 11:23:46 -0500 (Sat, 06 Jun 2009) | 1 line

    fix the except fixer on one line suites #6222
  ........
    r73256 | benjamin.peterson | 2009-06-06 11:27:40 -0500 (Sat, 06 Jun 2009) | 1 line

    test one-line else and finally clauses
  ........
    r73365 | benjamin.peterson | 2009-06-11 17:01:32 -0500 (Thu, 11 Jun 2009) | 1 line

    normalize whitespace
  ........
................
  r73372 | raymond.hettinger | 2009-06-12 00:08:10 +0200 (Fr, 12 Jun 2009) | 1 line

  Move comment to correct line.
................
  r73376 | benjamin.peterson | 2009-06-12 00:29:23 +0200 (Fr, 12 Jun 2009) | 1 line

  remove check for case handled in sub-function
................
  r73382 | raymond.hettinger | 2009-06-12 01:14:53 +0200 (Fr, 12 Jun 2009) | 1 line

  Issue 6261: Clarify behavior of random.uniform().
................
  r73393 | alexandre.vassalotti | 2009-06-12 20:56:57 +0200 (Fr, 12 Jun 2009) | 2 lines

  Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.
................
  r73394 | antoine.pitrou | 2009-06-12 22:14:08 +0200 (Fr, 12 Jun 2009) | 3 lines

  Issue #6215: backport the 3.1 io lib
................
  r73395 | antoine.pitrou | 2009-06-12 22:36:25 +0200 (Fr, 12 Jun 2009) | 4 lines

  Restore the old test_file.py (for the builtin file object) as a new file named test_file2k.py
................
  r73396 | antoine.pitrou | 2009-06-12 22:41:52 +0200 (Fr, 12 Jun 2009) | 4 lines

  Try to restore the old test_file and test_univnewlines as new, different files
  (with the right revisions this time, hopefully)
................
  r73397 | antoine.pitrou | 2009-06-12 22:54:21 +0200 (Fr, 12 Jun 2009) | 3 lines

  Re-enable testing of builtin open() in test_bufio in test_largefile
................
  r73398 | alexandre.vassalotti | 2009-06-12 22:57:12 +0200 (Fr, 12 Jun 2009) | 3 lines

  Add const qualifier to PyErr_SetFromErrnoWithFilename and to
  PyErr_SetFromErrnoWithUnicodeFilename.
................
  r73400 | alexandre.vassalotti | 2009-06-12 23:43:47 +0200 (Fr, 12 Jun 2009) | 2 lines

  Delete outdated make file for building the parser with MSVC 6.
................
  r73401 | alexandre.vassalotti | 2009-06-12 23:52:14 +0200 (Fr, 12 Jun 2009) | 2 lines

  Make pickling of OrderedDict instances more efficient.
................
  r73402 | alexandre.vassalotti | 2009-06-13 01:03:35 +0200 (Sa, 13 Jun 2009) | 6 lines

  Revert r73401 per Raymond Hettinger's request.

  The rational is the change might cause imcompatiblity problems with
  PyYAML. In addition, Raymond wants to kept the different versions of
  collections synchronized across Python versions.
................
  r73404 | benjamin.peterson | 2009-06-13 03:40:00 +0200 (Sa, 13 Jun 2009) | 1 line

  keep the slice.step field as NULL if no step expression is given
................
  r73405 | benjamin.peterson | 2009-06-13 05:46:30 +0200 (Sa, 13 Jun 2009) | 1 line

  prevent import statements from assigning to None
................
  r73409 | benjamin.peterson | 2009-06-13 15:06:21 +0200 (Sa, 13 Jun 2009) | 1 line

  allow importing from a module named None if it has an 'as' clause
................
  r73415 | benjamin.peterson | 2009-06-13 16:25:08 +0200 (Sa, 13 Jun 2009) | 1 line

  use 'rc' for release candidates for consistency
................
  r73417 | benjamin.peterson | 2009-06-13 17:42:23 +0200 (Sa, 13 Jun 2009) | 1 line

  special case release candidates
................
  r73418 | benjamin.peterson | 2009-06-13 17:48:04 +0200 (Sa, 13 Jun 2009) | 1 line

  handle different rc format
................
  r73419 | benjamin.peterson | 2009-06-13 18:19:19 +0200 (Sa, 13 Jun 2009) | 1 line

  set Print.values to NULL if there are no values
................
  r73420 | benjamin.peterson | 2009-06-13 19:08:53 +0200 (Sa, 13 Jun 2009) | 1 line

  give a better error message when deleting ()
................
  r73421 | benjamin.peterson | 2009-06-13 22:23:33 +0200 (Sa, 13 Jun 2009) | 1 line

  when no module is given in a 'from' relative import, make ImportFrom.module NULL
................
  r73422 | benjamin.peterson | 2009-06-13 22:30:48 +0200 (Sa, 13 Jun 2009) | 1 line

  update ast version
................
  r73423 | hirokazu.yamamoto | 2009-06-14 05:05:54 +0200 (So, 14 Jun 2009) | 1 line

  Updated MSVC files to follow r73394.
................
  r73432 | amaury.forgeotdarc | 2009-06-14 23:20:40 +0200 (So, 14 Jun 2009) | 3 lines

  #6227: Because of a wrong indentation, the test was not testing what it should.
  Ensure that the snippet in doctest_aliases actually contains aliases.
................
  r73433 | benjamin.peterson | 2009-06-15 00:36:48 +0200 (Mo, 15 Jun 2009) | 1 line

  backport r73430
................
  r73435 | tarek.ziade | 2009-06-16 01:04:29 +0200 (Di, 16 Jun 2009) | 1 line

  code cleanup
................
  r73436 | tarek.ziade | 2009-06-16 01:30:13 +0200 (Di, 16 Jun 2009) | 1 line

  Issue #6286: distutils upload command now uses urllib2
................
  r73439 | benjamin.peterson | 2009-06-16 02:29:31 +0200 (Di, 16 Jun 2009) | 1 line

  don't mask encoding errors when decoding a string #6289
................
  r73445 | tarek.ziade | 2009-06-16 10:31:01 +0200 (Di, 16 Jun 2009) | 1 line

  starting distutils.ccompiler test coverage and cleanup
................
  r73447 | georg.brandl | 2009-06-16 19:41:33 +0200 (Di, 16 Jun 2009) | 1 line

  Add tabularcolumns directive for tables with bullet lists in them.
................
  r73448 | georg.brandl | 2009-06-16 19:43:44 +0200 (Di, 16 Jun 2009) | 1 line

  Remove unused macro.
................
  r73457 | benjamin.peterson | 2009-06-17 01:13:09 +0200 (Mi, 17 Jun 2009) | 1 line

  add underscores
................
  r73460 | benjamin.peterson | 2009-06-17 05:23:04 +0200 (Mi, 17 Jun 2009) | 1 line

  remove unused 'encoding' member from the compiler struct
................
  r73461 | hirokazu.yamamoto | 2009-06-17 09:05:33 +0200 (Mi, 17 Jun 2009) | 1 line

  Issue #6215: Fixed to use self.open() instead of open() or io.open().
................
  r73465 | nick.coghlan | 2009-06-17 14:12:15 +0200 (Mi, 17 Jun 2009) | 1 line

  Issue 6288: update the contextlib.nested() docs to explain why it has been deprecated and should generally be avoided
................
  r73471 | georg.brandl | 2009-06-19 00:24:26 +0200 (Fr, 19 Jun 2009) | 1 line

  #6276: Remove usage of nested() in favor of new with statement with multiple managers.
................
  r73472 | amaury.forgeotdarc | 2009-06-19 00:32:50 +0200 (Fr, 19 Jun 2009) | 5 lines

  #6189: The subprocess.py module should be kept compatible with python 2.2

  (On windows, you still have to change one line to use pywin32
  instead of the _subprocess helper module)
................
  r73480 | facundo.batista | 2009-06-19 20:02:28 +0200 (Fr, 19 Jun 2009) | 3 lines

  Issue #6274. Fixed a potential FD leak in subprocess.py.
................
  r73485 | benjamin.peterson | 2009-06-20 00:07:47 +0200 (Sa, 20 Jun 2009) | 1 line

  remove duplicate test
................
  r73486 | benjamin.peterson | 2009-06-20 00:09:17 +0200 (Sa, 20 Jun 2009) | 1 line

  add missing assertion #6313
................
  r73488 | benjamin.peterson | 2009-06-20 00:16:28 +0200 (Sa, 20 Jun 2009) | 1 line

  show that this one isn't used
................
  r73489 | benjamin.peterson | 2009-06-20 00:21:12 +0200 (Sa, 20 Jun 2009) | 1 line

  use closures
................
  r73490 | tarek.ziade | 2009-06-20 15:57:20 +0200 (Sa, 20 Jun 2009) | 1 line

  Fixed #6164 AIX specific linker argument in Distutils unixcompiler
................
  r73495 | guilherme.polo | 2009-06-21 19:22:50 +0200 (So, 21 Jun 2009) | 4 lines

  Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to
  Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of
  test_ttkguionly.
................
  r73496 | vinay.sajip | 2009-06-21 19:37:27 +0200 (So, 21 Jun 2009) | 1 line

  Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
................
  r73499 | steven.bethard | 2009-06-21 23:03:41 +0200 (So, 21 Jun 2009) | 1 line

  Fix memory bug in bdist_msi. (Commit okayed in issue6319.)
................
  r73501 | benjamin.peterson | 2009-06-22 01:01:07 +0200 (Mo, 22 Jun 2009) | 1 line

  don't need to add the name 'lambda' as assigned
................
  r73502 | benjamin.peterson | 2009-06-22 01:03:36 +0200 (Mo, 22 Jun 2009) | 1 line

  remove tmpname support since it's no longer used
................
  r73509 | amaury.forgeotdarc | 2009-06-22 21:33:48 +0200 (Mo, 22 Jun 2009) | 2 lines

  #4490 Fix sample code run by "python -m xml.sax.xmlreader"
................
  r73513 | benjamin.peterson | 2009-06-23 03:18:57 +0200 (Di, 23 Jun 2009) | 1 line

  fix grammar
................
  r73514 | benjamin.peterson | 2009-06-23 05:01:56 +0200 (Di, 23 Jun 2009) | 1 line

  remove some unused symtable constants
................
  r73518 | nick.coghlan | 2009-06-23 12:19:30 +0200 (Di, 23 Jun 2009) | 1 line

  Issue 6288: Update contextlib.nested() docstring to reflect new documentation
................
  r73519 | nick.coghlan | 2009-06-23 12:51:02 +0200 (Di, 23 Jun 2009) | 1 line

  Remove markup from docstring
................
  r73532 | raymond.hettinger | 2009-06-23 22:59:43 +0200 (Di, 23 Jun 2009) | 3 lines

  Issue 6329: Fix iteration for memoryviews.
................
  r73534 | amaury.forgeotdarc | 2009-06-23 23:09:09 +0200 (Di, 23 Jun 2009) | 2 lines

  Remove the ipaddr module per discussion on python-dev
................
  r73536 | raymond.hettinger | 2009-06-23 23:32:28 +0200 (Di, 23 Jun 2009) | 1 line

  Issue 6305: Clarify error message for large arguments to itertools.islice().
................
  r73537 | amaury.forgeotdarc | 2009-06-23 23:53:46 +0200 (Di, 23 Jun 2009) | 3 lines

  Remove last remnants of the ipaddr package.
  The changes in mcast.py come from the first version of the patch for issue5379.
................
  r73540 | raymond.hettinger | 2009-06-24 00:20:04 +0200 (Mi, 24 Jun 2009) | 1 line

  Add procedural note.
................
  r73546 | kristjan.jonsson | 2009-06-24 11:17:04 +0200 (Mi, 24 Jun 2009) | 2 lines

  http://bugs.python.org/issue6192
  Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate.
................
  r73563 | amaury.forgeotdarc | 2009-06-25 23:29:32 +0200 (Do, 25 Jun 2009) | 2 lines

  Fix a compilation warning on Windows
................
  r73564 | amaury.forgeotdarc | 2009-06-26 00:29:29 +0200 (Fr, 26 Jun 2009) | 6 lines

  #2016 Fix a crash in function call when the **kwargs dictionary is mutated
  during the function call setup.

  This even gives a slight speedup, probably because tuple allocation
  is faster than PyMem_NEW.
................
  r73603 | hirokazu.yamamoto | 2009-06-28 12:23:00 +0200 (So, 28 Jun 2009) | 1 line

  Issue #4856: Remove checks for win NT.
................
  r73605 | georg.brandl | 2009-06-28 14:10:18 +0200 (So, 28 Jun 2009) | 1 line

  Remove stray pychecker directive.
................
  r73606 | martin.v.loewis | 2009-06-28 14:24:23 +0200 (So, 28 Jun 2009) | 2 lines

  Fix types in logic to compute help file name.
................
  r73614 | benjamin.peterson | 2009-06-28 18:08:02 +0200 (So, 28 Jun 2009) | 1 line

  add two generic macros for peeking and setting in the stack
................
  r73615 | benjamin.peterson | 2009-06-28 18:14:07 +0200 (So, 28 Jun 2009) | 1 line

  use stack macros
................
  r73627 | benjamin.peterson | 2009-06-28 21:27:55 +0200 (So, 28 Jun 2009) | 1 line

  return locals and cells in get_locals() not bound globals, though
................
  r73638 | kristjan.jonsson | 2009-06-28 23:04:17 +0200 (So, 28 Jun 2009) | 2 lines

  http://bugs.python.org/issue6267
  Cumulative patch to http and xmlrpc
................
  r73660 | mark.dickinson | 2009-06-29 00:37:13 +0200 (Mo, 29 Jun 2009) | 1 line

  Remove unused stdint.h includes
................
  r73665 | alexandre.vassalotti | 2009-06-29 03:01:51 +0200 (Mo, 29 Jun 2009) | 2 lines

  Update docstrings for sys.getdlopenflags() and sys.setdlopenflags().
................
  r73675 | hirokazu.yamamoto | 2009-06-29 13:27:03 +0200 (Mo, 29 Jun 2009) | 3 lines

  Issue #4856: Py_GetFileAttributesEx[AW] are not needed because GetFileAttributesEx[AW]
  won't fail with ERROR_CALL_NOT_IMPLEMENTED on win NT.
  Reviewed by Amaury Forgeot d'Arc.
................
  r73679 | antoine.pitrou | 2009-06-29 16:14:56 +0200 (Mo, 29 Jun 2009) | 3 lines

  Backport fix for buglet from py3k
................
  r73686 | hirokazu.yamamoto | 2009-06-29 17:52:21 +0200 (Mo, 29 Jun 2009) | 1 line

  Issue #6368: Fixed unused variable warning on Unix.
................
  r73688 | tarek.ziade | 2009-06-29 18:13:39 +0200 (Mo, 29 Jun 2009) | 1 line

  Fixed 6365: wrong inplace location for build_ext if the extension had dots
................
  r73697 | raymond.hettinger | 2009-06-29 21:10:29 +0200 (Mo, 29 Jun 2009) | 1 line

  Issue 6370: Performance issue with collections.Counter().
................
  r73701 | mark.dickinson | 2009-06-30 17:32:30 +0200 (Di, 30 Jun 2009) | 3 lines

  Issue #6347:  Add inttypes.h to the pyport.h #includes;  fixes a build
  failure on HP-UX 11.00.
................
  r73710 | benjamin.peterson | 2009-07-01 00:14:33 +0200 (Mi, 01 Jul 2009) | 1 line

  provide a dummy __exit__ on windows
................
  r73712 | ezio.melotti | 2009-07-01 00:51:06 +0200 (Mi, 01 Jul 2009) | 1 line

  Fixed defaultTestCase -> defaultTestResult
................
  r73714 | benjamin.peterson | 2009-07-01 00:57:08 +0200 (Mi, 01 Jul 2009) | 1 line

  convert usage of fail* to assert*
................
  r73717 | benjamin.peterson | 2009-07-01 01:30:12 +0200 (Mi, 01 Jul 2009) | 1 line

  use assert* methods in test_unittest
................
  r73720 | benjamin.peterson | 2009-07-01 02:36:41 +0200 (Mi, 01 Jul 2009) | 4 lines

  fix a few cases where automated fail -> assert translation messed up

  Thanks Joe Amenta
................
  r73725 | benjamin.peterson | 2009-07-01 02:49:09 +0200 (Mi, 01 Jul 2009) | 21 lines

  Merged revisions 73379,73388,73507,73722 via svnmerge from
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

  ........
    r73379 | benjamin.peterson | 2009-06-11 18:06:21 -0500 (Thu, 11 Jun 2009) | 1 line

    use a real conditional expresion
  ........
    r73388 | benjamin.peterson | 2009-06-12 09:44:29 -0500 (Fri, 12 Jun 2009) | 1 line

    fix typo in last fix
  ........
    r73507 | benjamin.peterson | 2009-06-22 13:32:04 -0500 (Mon, 22 Jun 2009) | 1 line

    remove svn:executable property
  ........
    r73722 | benjamin.peterson | 2009-06-30 19:44:30 -0500 (Tue, 30 Jun 2009) | 1 line

    replace fail* with assert*
  ........
................
  r73744 | benjamin.peterson | 2009-07-01 15:34:35 +0200 (Mi, 01 Jul 2009) | 1 line

  proxy the __exit__ call
................
  r73750 | benjamin.peterson | 2009-07-02 01:45:19 +0200 (Do, 02 Jul 2009) | 1 line

  small optimization: avoid popping the current block until we have to
................
  r73756 | tarek.ziade | 2009-07-02 14:47:54 +0200 (Do, 02 Jul 2009) | 1 line

  raising bdist_dumb test coverage
................
  r73757 | tarek.ziade | 2009-07-02 14:51:56 +0200 (Do, 02 Jul 2009) | 1 line

  cleaned up the bdist_dumb module
................
  r73762 | tarek.ziade | 2009-07-02 16:20:47 +0200 (Do, 02 Jul 2009) | 1 line

  pep8-fied and cleaned up distutils.util
................
  r73767 | jesus.cea | 2009-07-02 16:30:18 +0200 (Do, 02 Jul 2009) | 1 line

  multiprocessing doesn't compile in Solaris because a typo
................
  r73773 | benjamin.peterson | 2009-07-02 18:51:56 +0200 (Do, 02 Jul 2009) | 1 line

  remove this test; a module level warning is enough
................
  r73781 | benjamin.peterson | 2009-07-02 23:38:36 +0200 (Do, 02 Jul 2009) | 1 line

  test that compile() accepts the future flag
................
  r73786 | benjamin.peterson | 2009-07-03 00:56:16 +0200 (Fr, 03 Jul 2009) | 1 line

  condense with assertRaises
................
  r73801 | tarek.ziade | 2009-07-03 11:01:07 +0200 (Fr, 03 Jul 2009) | 1 line

  cleaned up distutils.command.build_py
................
  r73814 | tarek.ziade | 2009-07-03 21:01:12 +0200 (Fr, 03 Jul 2009) | 1 line

  basic tests to raise distutils.file_util coverage
................
  r73815 | tarek.ziade | 2009-07-03 21:14:49 +0200 (Fr, 03 Jul 2009) | 1 line

  cleaned distutils.file_util
................
  r73818 | gregory.p.smith | 2009-07-03 22:48:31 +0200 (Fr, 03 Jul 2009) | 2 lines

  Adds the select.PIPE_BUF attribute to expose the system constant.
................
  r73819 | kristjan.jonsson | 2009-07-04 01:07:07 +0200 (Sa, 04 Jul 2009) | 2 lines

  http://bugs.python.org/issue6381
  some platforms may raise ENOTCONN if the stack has disconnected the socket on behalf of the peer.
................
  r73821 | kristjan.jonsson | 2009-07-04 01:26:02 +0200 (Sa, 04 Jul 2009) | 2 lines

  http://bugs.python.org/issue6267
  Incorrect exception handling for xmlrp client retry
................
  r73822 | kristjan.jonsson | 2009-07-04 01:29:50 +0200 (Sa, 04 Jul 2009) | 2 lines

  http://bugs.python.org/issue6267
  Incorrect exception handling for xmlrpc client retry
................
  r73825 | gregory.p.smith | 2009-07-04 03:49:29 +0200 (Sa, 04 Jul 2009) | 9 lines

  Use select.poll() in subprocess, when available, rather than select() so that
  it does not fail when file descriptors are large.  Fixes issue3392.

  Patch largely contributed by Frank Chu (fpmc) with some improvements by me.
  See http://bugs.python.org/issue3392.

  Candidate for backporting to release26-maint as it is a bug fix and changes no
  public API.
................
  r73826 | gregory.p.smith | 2009-07-04 03:55:11 +0200 (Sa, 04 Jul 2009) | 2 lines

  news entry for r73825
................
  r73827 | tarek.ziade | 2009-07-04 04:02:41 +0200 (Sa, 04 Jul 2009) | 1 line

  Fixed #6413: fixed log level in distutils.dist.announce
................
  r73834 | tarek.ziade | 2009-07-04 04:59:19 +0200 (Sa, 04 Jul 2009) | 1 line

  using print statements when used for user interaction
................
  r73839 | gregory.p.smith | 2009-07-04 10:42:10 +0200 (Sa, 04 Jul 2009) | 3 lines

  Merge r73838 from py3k branch.  Use the nondeprecated unittest method
  names.
................
  r73841 | ezio.melotti | 2009-07-04 16:58:27 +0200 (Sa, 04 Jul 2009) | 1 line

  if zlib -> skipUnless(zlib) and minor cleanups
................
  r73846 | alexandre.vassalotti | 2009-07-05 06:22:40 +0200 (So, 05 Jul 2009) | 6 lines

  Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and
  operator.sequenceIncludes.

  Patch contributed by Jeff Balogh (and updated slightly by me).
................
  r73847 | alexandre.vassalotti | 2009-07-05 06:25:46 +0200 (So, 05 Jul 2009) | 2 lines

  Fix bad variable name in r73846.
................
  r73854 | alexandre.vassalotti | 2009-07-05 08:33:41 +0200 (So, 05 Jul 2009) | 2 lines

  Backport test cases added in r73852.
................
  r73858 | mark.dickinson | 2009-07-05 12:01:24 +0200 (So, 05 Jul 2009) | 3 lines

  Issues #1530559, #1741130:  Fix various inconsistencies in struct.pack
  integer packing, and reenable some previously broken tests.
................
  r73863 | kristjan.jonsson | 2009-07-05 22:56:57 +0200 (So, 05 Jul 2009) | 2 lines

  http://bugs.python.org/issue6382
  close_request() (which can send a socket.shutdown()) must be called by the child process in a forking server.  The parent must merely close the socket handle.
................
  r73864 | tarek.ziade | 2009-07-06 14:50:46 +0200 (Mo, 06 Jul 2009) | 1 line

  Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option)
................
  r73871 | alexandre.vassalotti | 2009-07-07 04:17:30 +0200 (Di, 07 Jul 2009) | 7 lines

  Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun.

  Without this change, test_unicode.UnicodeTest.test_codecs_utf7 crashes in
  debug mode. What happens is the unicode string u'\U000abcde' with a length
  of 1 encodes to the string '+2m/c3g-' of length 8. Since only 5 bytes is
  reserved in the buffer, a buffer overrun occurs.
................
  r73877 | kristjan.jonsson | 2009-07-07 11:01:34 +0200 (Di, 07 Jul 2009) | 2 lines

  http://bugs.python.org/issue6382
  added the shutdown_request() which can perform shutdown before calling close.  This is needed for the ForkingMixIn because different close semantics are required for child and parent process.  shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request().  Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
................
  r73884 | mark.dickinson | 2009-07-07 13:08:23 +0200 (Di, 07 Jul 2009) | 1 line

  Add skipping to struct test that only applies when overflow masking is in effect
................
  r73888 | mark.dickinson | 2009-07-07 16:15:45 +0200 (Di, 07 Jul 2009) | 3 lines

  Expand test coverage for struct.pack with native integer packing;
  reorganize the test_struct module to remove duplicated code and tests.
................
  r73891 | mark.dickinson | 2009-07-07 17:08:28 +0200 (Di, 07 Jul 2009) | 3 lines

  Issue #1523: Remove deprecated overflow masking in struct module, and
  make sure that out-of-range values consistently raise struct.error.
................
  r73895 | tarek.ziade | 2009-07-09 00:40:51 +0200 (Do, 09 Jul 2009) | 1 line

  Sets the compiler attribute to keep the old behavior for third-party packages.
................
  r73901 | tarek.ziade | 2009-07-09 09:42:42 +0200 (Do, 09 Jul 2009) | 1 line

  PendingDeprecationWarning -> DeprecationWarning in build_ext
................
  r73916 | amaury.forgeotdarc | 2009-07-10 00:37:22 +0200 (Fr, 10 Jul 2009) | 5 lines

  #6416: Fix compilation of the select module on Windows, as well as test_subprocess:
  PIPE_BUF is not defined on Windows, and probably has no meaning there.

  Anyway the subprocess module uses another way to perform non-blocking reads (with a thread)
................
  r73925 | tarek.ziade | 2009-07-10 11:57:15 +0200 (Fr, 10 Jul 2009) | 1 line

  Added test coverage for distutils.command.build
................
  r73926 | tarek.ziade | 2009-07-10 12:00:21 +0200 (Fr, 10 Jul 2009) | 1 line

  cleaned up distutils.command.build
................
  r73930 | amaury.forgeotdarc | 2009-07-10 18:47:42 +0200 (Fr, 10 Jul 2009) | 2 lines

  #6447: typo in subprocess docstring
................
  r73931 | ezio.melotti | 2009-07-10 22:25:56 +0200 (Fr, 10 Jul 2009) | 1 line

  more cleanups and if zlib -> skipUnless(zlib)
................
  r73932 | kristjan.jonsson | 2009-07-11 10:44:43 +0200 (Sa, 11 Jul 2009) | 3 lines

  http://bugs.python.org/issue6460
  Need to be careful with thread switching when testing the xmlrpc server.  The server thread may not have updated stats when the client thread tests them.
................
  r73933 | amaury.forgeotdarc | 2009-07-11 11:09:59 +0200 (Sa, 11 Jul 2009) | 3 lines

  Add basic tests for the return value of os.popen().close().
  According to #6358, python 3.0 has a different implementation that behaves differently.
................
  r73944 | tarek.ziade | 2009-07-11 12:48:31 +0200 (Sa, 11 Jul 2009) | 1 line

  cleaned up distutils.build_ext module
................
  r73962 | benjamin.peterson | 2009-07-12 00:15:13 +0200 (So, 12 Jul 2009) | 1 line

  put downloaded test support files in Lib/test/data instead of the cwd
................
  r73963 | benjamin.peterson | 2009-07-12 00:25:24 +0200 (So, 12 Jul 2009) | 1 line

  ignore things in Lib/test/data/
................
  r73985 | benjamin.peterson | 2009-07-12 23:18:55 +0200 (So, 12 Jul 2009) | 1 line

  add Joe
................
  r73986 | kristjan.jonsson | 2009-07-13 00:42:08 +0200 (Mo, 13 Jul 2009) | 2 lines

  http://bugs.python.org/issue6267
  Add more tests for the xlmrpc.ServerProxy
................
  r73988 | benjamin.peterson | 2009-07-13 01:40:33 +0200 (Mo, 13 Jul 2009) | 1 line

  fix Tarek's name
................
  r73989 | benjamin.peterson | 2009-07-13 01:44:43 +0200 (Mo, 13 Jul 2009) | 1 line

  change encoding to utf-8
................
  r73990 | benjamin.peterson | 2009-07-13 01:49:23 +0200 (Mo, 13 Jul 2009) | 1 line

  fix another name
................
  r73991 | benjamin.peterson | 2009-07-13 01:56:18 +0200 (Mo, 13 Jul 2009) | 1 line

  change encoding to utf-8
................
  r73994 | benjamin.peterson | 2009-07-13 02:03:20 +0200 (Mo, 13 Jul 2009) | 1 line

  fix umlaut
................
  r73995 | vinay.sajip | 2009-07-13 13:21:05 +0200 (Mo, 13 Jul 2009) | 1 line

  Issue #6314: logging: Extra checks on the "level" argument in more places.
................
  r73998 | amaury.forgeotdarc | 2009-07-13 21:14:17 +0200 (Mo, 13 Jul 2009) | 3 lines

  Set svn:eol-style=CRLF on all Visual Studio solution files.
  This should allow direct compilation from a downloaded source tar ball.
................
  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.
................
2010-05-19 12:55:12 +00:00
Georg Brandl 573d1df95b Blocked revisions 72004,72040,72052,72054,72056,72094,72107,72111,72114-72115,72117,72119,72126-72127,72131,72133-72135,72137,72155,72167,72173,72178,72183-72184,72189,72191,72197-72200,72202,72210,72213,72219,72223,72225-72226,72237,72241,72246,72250,72253,72257,72267,72269,72273,72283-72284,72303,72306,72314,72322,72324,72326,72328,72335,72343,72348,72361,72368,72377,72382,72388,72392,72404,72406,72443,72445,72451,72454,72461,72464,72468-72469,72474,72476,72487-72489,72494-72495,72497,72500,72506,72508-72510,72512,72516-72518,72525-72526,72535,72539,72543,72547,72551,72560,72570-72571,72582-72583,72605,72616,72618,72624,72630,72654-72655,72658,72669,72671,72681,72686,72689-72690,72692-72694,72696,72698-72699,72721,72727,72730,72736,72746,72764,72768,72774,72776-72777,72786,72789,72791,72796,72799,72805,72812-72813,72817,72823,72833,72879-72880,72890-72891,72898,72900,72903,72905,72907,72909,72912,72920-72921,72923-72924,72940,72956-72958,72972-72973,72979,72981,72986 via svnmerge
................
  r72004 | vinay.sajip | 2009-04-27 13:44:27 +0000 (Mo, 27 Apr 2009) | 1 line

  Issue #5854: Updated __all__ to include some missing names and remove some names which should not be exported.
................
  r72040 | eric.smith | 2009-04-27 19:04:37 +0000 (Mo, 27 Apr 2009) | 1 line

  Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors.
................
  r72052 | raymond.hettinger | 2009-04-27 21:12:27 +0000 (Mo, 27 Apr 2009) | 1 line

  Update spec version number.
................
  r72054 | antoine.pitrou | 2009-04-27 21:53:26 +0000 (Mo, 27 Apr 2009) | 5 lines

  Issue #1734234: Massively speedup `unicodedata.normalize()` when the
  string is already in normalized form, by performing a quick check beforehand.
  Original patch by Rauli Ruohonen.
................
  r72056 | eric.smith | 2009-04-28 07:33:09 +0000 (Di, 28 Apr 2009) | 1 line

  Silence warning on Windows.
................
  r72094 | tarek.ziade | 2009-04-29 08:03:46 +0000 (Mi, 29 Apr 2009) | 1 line

  Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore
................
  r72107 | matthias.klose | 2009-04-29 17:18:19 +0000 (Mi, 29 Apr 2009) | 3 lines

  - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify
    the order that backends for the dbm extension are checked.
................
  r72111 | matthias.klose | 2009-04-29 19:52:49 +0000 (Mi, 29 Apr 2009) | 3 lines

  - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify
    the order that backends for the dbm extension are checked.
................
  r72114 | matthias.klose | 2009-04-29 20:09:50 +0000 (Mi, 29 Apr 2009) | 2 lines

  - configure.in: Don't error, when no --with-dbmliborder option is present
................
  r72115 | r.david.murray | 2009-04-29 20:15:18 +0000 (Mi, 29 Apr 2009) | 2 lines

  More aifc tests.
................
  r72117 | benjamin.peterson | 2009-04-29 20:36:25 +0000 (Mi, 29 Apr 2009) | 1 line

  run autoconf
................
  r72119 | mark.dickinson | 2009-04-29 20:41:00 +0000 (Mi, 29 Apr 2009) | 3 lines

  Issue #5864: format(1234.5, '.4') gives misleading result
  (Backport of r72109 from py3k.)
................
  r72126 | mark.dickinson | 2009-04-29 21:56:53 +0000 (Mi, 29 Apr 2009) | 2 lines

  Remove format_float and use _PyOS_double_to_string instead.
................
  r72127 | mark.dickinson | 2009-04-29 21:57:15 +0000 (Mi, 29 Apr 2009) | 2 lines

  Backport some of the float formatting tests from py3k.
................
  r72131 | benjamin.peterson | 2009-04-29 22:43:35 +0000 (Mi, 29 Apr 2009) | 1 line

  fix test_shutil on ZFS #5676
................
  r72133 | benjamin.peterson | 2009-04-29 22:44:15 +0000 (Mi, 29 Apr 2009) | 1 line

  make sure mode is removable while cleaning up test droppings
................
  r72134 | benjamin.peterson | 2009-04-30 00:06:33 +0000 (Do, 30 Apr 2009) | 1 line

  make sure to close file
................
  r72135 | benjamin.peterson | 2009-04-30 00:23:11 +0000 (Do, 30 Apr 2009) | 1 line

  prevent ref cycles by removing bound method on close()
................
  r72137 | eric.smith | 2009-04-30 00:58:58 +0000 (Do, 30 Apr 2009) | 1 line

  Issue #1588: Add complex.__format__.
................
  r72155 | senthil.kumaran | 2009-05-01 05:59:52 +0000 (Fr, 01 Mai 2009) | 4 lines

  Fix for Issue1648102, based on the MSDN spec: If this parameter specifies the
  "<local>" macro as the only entry, this function bypasses any host name that
  does not contain a period.
................
  r72167 | walter.doerwald | 2009-05-01 17:35:37 +0000 (Fr, 01 Mai 2009) | 5 lines

  Make test.test_support.EnvironmentVarGuard behave like a dictionary.

  All changes are mirrored to the underlying os.environ dict, but rolled back
  on exit from the with block.
................
  r72173 | gregory.p.smith | 2009-05-01 19:59:52 +0000 (Fr, 01 Mai 2009) | 5 lines

  Adds the ipaddr module to the standard library.  Issue #3959.
  Based off of subversion r69 from http://code.google.com/p/ipaddr-py/

  This code is 2to3 safe, I'll merge it into py3k later this afternoon.
................
  r72178 | antoine.pitrou | 2009-05-01 20:55:35 +0000 (Fr, 01 Mai 2009) | 4 lines

  Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an
  error when a named pipe is encountered, rather than blocking infinitely.
................
  r72183 | georg.brandl | 2009-05-01 21:28:35 +0000 (Fr, 01 Mai 2009) | 2 lines

  Review ipaddr docs and add them in the TOC under "Internet protocols".
................
  r72184 | georg.brandl | 2009-05-01 21:30:25 +0000 (Fr, 01 Mai 2009) | 1 line

  Fix directive name.
................
  r72189 | eric.smith | 2009-05-02 09:58:09 +0000 (Sa, 02 Mai 2009) | 1 line

  Keep py3k and trunk code in sync.
................
  r72191 | michael.foord | 2009-05-02 11:43:06 +0000 (Sa, 02 Mai 2009) | 9 lines

  Adds an exit parameter to unittest.main(). If False main no longer
  calls sys.exit.

  Closes issue 3379.

  Michael Foord

................
  r72197 | benjamin.peterson | 2009-05-02 16:24:37 +0000 (Sa, 02 Mai 2009) | 1 line

  don't let sys.argv be used in the tests
................
  r72198 | andrew.kuchling | 2009-05-02 17:12:15 +0000 (Sa, 02 Mai 2009) | 1 line

  Add items
................
  r72199 | benjamin.peterson | 2009-05-02 17:33:01 +0000 (Sa, 02 Mai 2009) | 1 line

  remove py3k compat code
................
  r72200 | benjamin.peterson | 2009-05-02 17:35:39 +0000 (Sa, 02 Mai 2009) | 1 line

  revert unrelated change
................
  r72202 | mark.dickinson | 2009-05-02 17:55:01 +0000 (Sa, 02 Mai 2009) | 3 lines

  Remove unnecessary use of context for long getters.
  (Related to issue #5880).
................
  r72210 | gregory.p.smith | 2009-05-02 18:58:21 +0000 (Sa, 02 Mai 2009) | 2 lines

  Convert test method names to PEP8 style.
................
  r72213 | andrew.kuchling | 2009-05-02 19:17:28 +0000 (Sa, 02 Mai 2009) | 3 lines

  #1607951: Make mailbox.Maildir re-read the directories less frequently.
  This is done by recording the current time -1sec, and not re-reading unless
  the directory mod. times are >= the recorded time.
................
  r72219 | michael.foord | 2009-05-02 20:15:05 +0000 (Sa, 02 Mai 2009) | 8 lines

  Add addCleanup and doCleanups to unittest.TestCase.

  Closes issue 5679.

  Michael Foord
................
  r72223 | antoine.pitrou | 2009-05-02 21:13:23 +0000 (Sa, 02 Mai 2009) | 5 lines

  Isue #5084: unpickling now interns the attribute names of pickled objects,
  saving memory and avoiding growth in size of subsequent pickles. Proposal
  and original patch by Jake McGuire.
................
  r72225 | michael.foord | 2009-05-02 22:43:34 +0000 (Sa, 02 Mai 2009) | 1 line
................
  r72226 | kurt.kaiser | 2009-05-03 01:03:44 +0000 (So, 03 Mai 2009) | 3 lines

  idle.py modified and simplified to better support
  developing experimental versions of IDLE which are
  not installed in the standard location.
................
  r72237 | gregory.p.smith | 2009-05-03 18:42:15 +0000 (So, 03 Mai 2009) | 3 lines

  Issue 5379 - applies patch supplied by philipp hagemeister to fix
  many problems with the ancient mcast.py demo code.
................
  r72241 | gregory.p.smith | 2009-05-03 19:37:05 +0000 (So, 03 Mai 2009) | 3 lines

  Optimization: move RFC defined network constant construction out of
  the is_*() methods and into module private instances.
................
  r72246 | gregory.p.smith | 2009-05-03 20:27:25 +0000 (So, 03 Mai 2009) | 2 lines

  docstring update.
................
  r72250 | mark.dickinson | 2009-05-03 20:39:06 +0000 (So, 03 Mai 2009) | 2 lines

  Remove unnecessary uses of context in PyGetSetDef.  See issue #5880.
................
  r72253 | mark.dickinson | 2009-05-03 20:59:48 +0000 (So, 03 Mai 2009) | 2 lines

  Eliminate some locale-dependent calls to isspace and tolower.
................
  r72257 | mark.dickinson | 2009-05-03 22:33:34 +0000 (So, 03 Mai 2009) | 2 lines

  Don't use PyOS_strnicmp for NaN and Inf detection: it's locale-aware.
................
  r72267 | gregory.p.smith | 2009-05-04 00:16:49 +0000 (Mo, 04 Mai 2009) | 3 lines

  Issue #4751: For hashlib algorithms provided by OpenSSL, the Python
  GIL is now released during computation on data lengths >= 2048 bytes.
................
  r72269 | gregory.p.smith | 2009-05-04 00:48:41 +0000 (Mo, 04 Mai 2009) | 2 lines

  cleanup applied patch to match style that is already in py3k branch.
................
  r72273 | hirokazu.yamamoto | 2009-05-04 05:28:39 +0000 (Mo, 04 Mai 2009) | 1 line

  Issue #5913: os.listdir() should fail for empty path on windows.
................
  r72283 | antoine.pitrou | 2009-05-04 18:32:32 +0000 (Mo, 04 Mai 2009) | 4 lines

  Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences.
  Patch by Nick Barnes and Victor Stinner.
................
  r72284 | antoine.pitrou | 2009-05-04 18:32:50 +0000 (Mo, 04 Mai 2009) | 3 lines

  Add Nick Barnes to ACKS.
................
  r72303 | benjamin.peterson | 2009-05-05 00:55:24 +0000 (Di, 05 Mai 2009) | 1 line

  using sys._getframe(x), where x > 0 doesnt' work on IronPython
................
  r72306 | steven.bethard | 2009-05-05 01:31:22 +0000 (Di, 05 Mai 2009) | 1 line

  Update bdist_msi so that the generated MSIs for pure Python modules can install to any version of Python, like the generated EXEs from bdist_wininst. (Previously, you had to create a new MSI for each version of Python.)
................
  r72314 | georg.brandl | 2009-05-05 07:48:12 +0000 (Di, 05 Mai 2009) | 1 line

  #5932: fix error return in _convertPyInt_AsSsize_t() conversion function.
................
  r72322 | georg.brandl | 2009-05-05 08:54:11 +0000 (Di, 05 Mai 2009) | 1 line

  #5142: add module skipping feature to pdb.
................
  r72324 | georg.brandl | 2009-05-05 09:06:02 +0000 (Di, 05 Mai 2009) | 1 line

  Fix overlong lines.
................
  r72326 | georg.brandl | 2009-05-05 09:19:43 +0000 (Di, 05 Mai 2009) | 1 line

  #5929: fix signedness warning.
................
  r72328 | georg.brandl | 2009-05-05 09:20:52 +0000 (Di, 05 Mai 2009) | 1 line

  Remove unused variable.
................
  r72335 | martin.v.loewis | 2009-05-05 16:10:16 +0000 (Di, 05 Mai 2009) | 2 lines

  Issue #5847: Remove -n switch on "Edit with IDLE" menu item.
................
  r72343 | senthil.kumaran | 2009-05-05 17:34:42 +0000 (Di, 05 Mai 2009) | 1 line

  Fixing issue5861 - test_urllib fails on windows. Agree to comment to have ':' in pathname2url as windows recognizes it. test_urllib passes now.
................
  r72348 | eric.smith | 2009-05-05 18:26:08 +0000 (Di, 05 Mai 2009) | 1 line

  Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson.
................
  r72361 | martin.v.loewis | 2009-05-05 22:13:01 +0000 (Di, 05 Mai 2009) | 2 lines

  Issue #5721: don't package Lib/test/README anymore.
................
  r72368 | benjamin.peterson | 2009-05-05 23:13:58 +0000 (Di, 05 Mai 2009) | 53 lines

  Merged revisions 68503,68507,68694,69054,69673,69679-69681,70991,70999,71003,71695 via svnmerge from
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

  ........
    r68503 | benjamin.peterson | 2009-01-10 14:14:49 -0600 (Sat, 10 Jan 2009) | 1 line

    use variable
  ........
    r68507 | benjamin.peterson | 2009-01-10 15:13:16 -0600 (Sat, 10 Jan 2009) | 1 line

    rewrap
  ........
    r68694 | benjamin.peterson | 2009-01-17 17:55:59 -0600 (Sat, 17 Jan 2009) | 1 line

    test for specific node type
  ........
    r69054 | guilherme.polo | 2009-01-28 10:01:54 -0600 (Wed, 28 Jan 2009) | 2 lines

    Added mapping for the ttk module.
  ........
    r69673 | benjamin.peterson | 2009-02-16 09:38:22 -0600 (Mon, 16 Feb 2009) | 1 line

    fix handling of as imports #5279
  ........
    r69679 | benjamin.peterson | 2009-02-16 11:36:06 -0600 (Mon, 16 Feb 2009) | 1 line

    make Base.get_next_sibling() and Base.get_prev_sibling() properties
  ........
    r69680 | benjamin.peterson | 2009-02-16 11:41:48 -0600 (Mon, 16 Feb 2009) | 1 line

    normalize docstrings in pytree according to PEP 11
  ........
    r69681 | benjamin.peterson | 2009-02-16 11:43:09 -0600 (Mon, 16 Feb 2009) | 1 line

    use a set
  ........
    r70991 | benjamin.peterson | 2009-04-01 15:54:50 -0500 (Wed, 01 Apr 2009) | 1 line

    map urllib.urlopen to urllib.request.open #5637
  ........
    r70999 | benjamin.peterson | 2009-04-01 17:36:47 -0500 (Wed, 01 Apr 2009) | 1 line

    add very alpha support to 2to3 for running concurrently with multiprocessing
  ........
    r71003 | benjamin.peterson | 2009-04-01 18:10:43 -0500 (Wed, 01 Apr 2009) | 1 line

    fix when multiprocessing is not available or used
  ........
    r71695 | benjamin.peterson | 2009-04-17 22:21:29 -0500 (Fri, 17 Apr 2009) | 1 line

    refactor multiprocessing support, so it's less hacky to employ and only loads mp when needed
  ........
................
  r72377 | tarek.ziade | 2009-05-06 07:17:52 +0000 (Mi, 06 Mai 2009) | 1 line

  Added a test and cleaned check_library_list to be ready to fix #5940
................
  r72382 | tarek.ziade | 2009-05-06 07:41:53 +0000 (Mi, 06 Mai 2009) | 1 line

  pep8-fied build_clib module : it is now similar to the one in 3.x
................
  r72388 | tarek.ziade | 2009-05-06 08:05:47 +0000 (Mi, 06 Mai 2009) | 1 line

  more build_clib cleanup + test coverage
................
  r72392 | tarek.ziade | 2009-05-06 08:11:00 +0000 (Mi, 06 Mai 2009) | 1 line

  removed string.split usage
................
  r72404 | walter.doerwald | 2009-05-06 14:28:24 +0000 (Mi, 06 Mai 2009) | 3 lines

  Issue 3739: The unicode-internal encoder now reports the number of *characters*
  consumed like any other encoder (instead of the number of bytes).
................
  r72406 | walter.doerwald | 2009-05-06 14:32:35 +0000 (Mi, 06 Mai 2009) | 2 lines

  Add NEWS entry about issue #3739.
................
  r72443 | tarek.ziade | 2009-05-07 21:13:02 +0000 (Do, 07 Mai 2009) | 1 line

  removed remaining spaces
................
  r72445 | tarek.ziade | 2009-05-07 21:20:34 +0000 (Do, 07 Mai 2009) | 1 line

  Fixed #5941: added ARFLAGS for the archiver command.
................
  r72451 | tarek.ziade | 2009-05-07 22:19:27 +0000 (Do, 07 Mai 2009) | 1 line

  run autoconf (step forgotten in r72445)
................
  r72454 | tarek.ziade | 2009-05-07 23:01:56 +0000 (Do, 07 Mai 2009) | 1 line

  fixed AR/ARFLAGS values in test_sysconfig
................
  r72461 | benjamin.peterson | 2009-05-08 03:06:00 +0000 (Fr, 08 Mai 2009) | 1 line

  add _PyObject_LookupSpecial to handle fetching special method lookup
................
  r72464 | benjamin.peterson | 2009-05-08 03:29:26 +0000 (Fr, 08 Mai 2009) | 1 line

  this is now a bound method
................
  r72468 | jeroen.ruigrok | 2009-05-08 13:07:39 +0000 (Fr, 08 Mai 2009) | 2 lines

  Add ISO-8859-16.
................
  r72469 | jeroen.ruigrok | 2009-05-08 14:11:23 +0000 (Fr, 08 Mai 2009) | 2 lines

  Update the Windows locale mapping with the ones introduced with Vista.
................
  r72474 | benjamin.peterson | 2009-05-08 17:59:29 +0000 (Fr, 08 Mai 2009) | 1 line

  fix this test
................
  r72476 | thomas.heller | 2009-05-08 20:09:40 +0000 (Fr, 08 Mai 2009) | 4 lines

  Add a file that contains diffs between offical libffi files and the
  files in this repository.  Should make it easier to merge new libffi
  versions.
................
  r72487 | jeffrey.yasskin | 2009-05-08 21:51:06 +0000 (Fr, 08 Mai 2009) | 7 lines

  PyCode_NewEmpty:
  Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
  are trying to build an empty code object, usually to put it in a dummy frame
  object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
  just the filename, function name, and first line number, instead of also
  requiring lots of code internals.
................
  r72488 | jeffrey.yasskin | 2009-05-08 22:23:21 +0000 (Fr, 08 Mai 2009) | 13 lines

  Issue 5954, PyFrame_GetLineNumber:
  Most uses of PyCode_Addr2Line
  (http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
  the line number of a specified frame, but there's no way to do that directly.
  Forcing people to go through the code object makes them know more about the
  guts of the interpreter than they should need.

  The remaining uses of PyCode_Addr2Line seem to be getting the line from a
  traceback (for example,
  http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
  which is replaced by the tb_lineno field.  So we may be able to deprecate
  PyCode_Addr2Line entirely for external use.
................
  r72489 | gregory.p.smith | 2009-05-08 23:16:47 +0000 (Fr, 08 Mai 2009) | 3 lines

  Fix an off by one error on negative indexs to __getitem__
  http://code.google.com/p/ipaddr-py/issues/detail?id=15
................
  r72494 | benjamin.peterson | 2009-05-09 01:01:14 +0000 (Sa, 09 Mai 2009) | 21 lines

  Merged revisions 72491-72493 via svnmerge from
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

  ........
    r72491 | benjamin.peterson | 2009-05-08 19:33:27 -0500 (Fri, 08 May 2009) | 7 lines

    make 2to3 use unicode internally on 2.x

    This started out as a fix for #2660, but became this large refactoring
    when I realized the dire state this was in. 2to3 now uses
    tokenize.detect_encoding to decode the files correctly into unicode.
  ........
    r72492 | benjamin.peterson | 2009-05-08 19:35:38 -0500 (Fri, 08 May 2009) | 1 line

    remove compat code
  ........
    r72493 | benjamin.peterson | 2009-05-08 19:54:15 -0500 (Fri, 08 May 2009) | 1 line

    add a test for \r\n newlines
  ........
................
  r72495 | benjamin.peterson | 2009-05-09 02:07:04 +0000 (Sa, 09 Mai 2009) | 1 line

  lookup __reversed__ correctly as a special method
................
  r72497 | tarek.ziade | 2009-05-09 08:28:53 +0000 (Sa, 09 Mai 2009) | 1 line

  Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used
................
  r72500 | tarek.ziade | 2009-05-09 10:06:00 +0000 (Sa, 09 Mai 2009) | 1 line

  #5976: fixed distutils test_check_environ
................
  r72506 | vinay.sajip | 2009-05-09 12:07:17 +0000 (Sa, 09 Mai 2009) | 1 line

  Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when trying to print a traceback.
................
  r72508 | benjamin.peterson | 2009-05-09 16:36:39 +0000 (Sa, 09 Mai 2009) | 1 line

  convert some more special methods to use _PyObject_LookupSpecial
................
  r72509 | benjamin.peterson | 2009-05-09 16:51:51 +0000 (Sa, 09 Mai 2009) | 1 line

  ignore classic classes
................
  r72510 | benjamin.peterson | 2009-05-09 17:13:10 +0000 (Sa, 09 Mai 2009) | 1 line

  can't handle classic classes here
................
  r72512 | benjamin.peterson | 2009-05-09 17:23:03 +0000 (Sa, 09 Mai 2009) | 1 line

  *sigh* deal with instances correctly
................
  r72516 | benjamin.peterson | 2009-05-09 19:03:05 +0000 (Sa, 09 Mai 2009) | 1 line

  ignore AttributeErrors for classic classes
................
  r72517 | benjamin.peterson | 2009-05-09 19:17:59 +0000 (Sa, 09 Mai 2009) | 1 line

  don't ignore exceptions from _PyObject_LengthHint
................
  r72518 | benjamin.peterson | 2009-05-09 19:18:36 +0000 (Sa, 09 Mai 2009) | 1 line

  clear error state properly
................
  r72525 | benjamin.peterson | 2009-05-10 01:38:02 +0000 (So, 10 Mai 2009) | 1 line

  close file explicitly
................
  r72526 | benjamin.peterson | 2009-05-10 02:29:00 +0000 (So, 10 Mai 2009) | 1 line

  make sure files are closed using the with statement
................
  r72535 | tarek.ziade | 2009-05-10 11:42:46 +0000 (So, 10 Mai 2009) | 1 line

  Added tests form install_lib and pep8-fied the module
................
  r72539 | tarek.ziade | 2009-05-10 11:59:30 +0000 (So, 10 Mai 2009) | 1 line

  refactored test_sysconfig so it uses test.test_support.EnvironmentVarGuard
................
  r72543 | tarek.ziade | 2009-05-10 12:17:30 +0000 (So, 10 Mai 2009) | 1 line

  now using EnvironGuard everywhere
................
  r72547 | tarek.ziade | 2009-05-10 12:36:48 +0000 (So, 10 Mai 2009) | 1 line

  fixed test for all platforms
................
  r72551 | benjamin.peterson | 2009-05-10 14:16:47 +0000 (So, 10 Mai 2009) | 1 line

  use isinstance
................
  r72560 | tarek.ziade | 2009-05-11 08:45:17 +0000 (Mo, 11 Mai 2009) | 1 line

  distutils.test_build_clib added a new line at the end of the file, to avoid a warning with some compilers
................
  r72570 | michael.foord | 2009-05-11 17:59:43 +0000 (Mo, 11 Mai 2009) | 7 lines

  Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes
  from the command line.

  Closes issue 5995.

  Michael Foord
................
  r72571 | michael.foord | 2009-05-11 18:01:45 +0000 (Mo, 11 Mai 2009) | 1 line

  Add missing # to NEWS
................
  r72582 | michael.foord | 2009-05-12 10:46:23 +0000 (Di, 12 Mai 2009) | 1 line

  Fix to restore command line behaviour for test modules using unittest.main(). Regression caused by issue 5995. Michael
................
  r72583 | michael.foord | 2009-05-12 10:49:13 +0000 (Di, 12 Mai 2009) | 1 line

  Better fix for modules using unittest.main(). Fixes regression caused by commit for issue 5995. Michael Foord
................
  r72605 | r.david.murray | 2009-05-13 17:14:11 +0000 (Mi, 13 Mai 2009) | 3 lines

  Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source'
  file is a binary.  Patch by Brodie Rao, test by Daniel Diniz.
................
  r72616 | benjamin.peterson | 2009-05-14 00:33:10 +0000 (Do, 14 Mai 2009) | 1 line

  importlib.import_module is better these days
................
  r72618 | tarek.ziade | 2009-05-14 12:40:59 +0000 (Do, 14 Mai 2009) | 1 line

  more test coverage for distutils sdist command
................
  r72624 | tarek.ziade | 2009-05-14 14:56:14 +0000 (Do, 14 Mai 2009) | 1 line

  pep8-fied distutils.command.sdist + more tests
................
  r72630 | r.david.murray | 2009-05-14 16:12:57 +0000 (Do, 14 Mai 2009) | 3 lines

  Fix test failure on Windows, and add skip check if even unicodedata
  turns out not to be an external module on some other platform.
................
  r72654 | benjamin.peterson | 2009-05-14 22:37:49 +0000 (Do, 14 Mai 2009) | 1 line

  prevent refleaks from threads
................
  r72655 | benjamin.peterson | 2009-05-14 22:40:34 +0000 (Do, 14 Mai 2009) | 1 line

  a useful decorator for cleaning up threads
................
  r72658 | collin.winter | 2009-05-14 23:26:30 +0000 (Do, 14 Mai 2009) | 1 line

  Issue 6024: make regrtest.py promote refleaks to test failures.
................
  r72669 | antoine.pitrou | 2009-05-15 16:54:52 +0000 (Fr, 15 Mai 2009) | 3 lines

  Issue #2116: Weak references and weak dictionaries now support copy()ing and deepcopy()ing.
................
  r72671 | antoine.pitrou | 2009-05-15 17:27:30 +0000 (Fr, 15 Mai 2009) | 3 lines

  Fix bootstrapping by removing uses of the copy module in distutils
................
  r72681 | tarek.ziade | 2009-05-16 16:37:06 +0000 (Sa, 16 Mai 2009) | 1 line

  #6041: sdist and register now use the check command. No more duplicate code for metadata checking
................
  r72686 | tarek.ziade | 2009-05-16 18:29:40 +0000 (Sa, 16 Mai 2009) | 1 line

  pep8-fied distutils.dist module
................
  r72689 | benjamin.peterson | 2009-05-16 18:44:34 +0000 (Sa, 16 Mai 2009) | 1 line

  use skipTest()
................
  r72690 | benjamin.peterson | 2009-05-16 21:44:25 +0000 (Sa, 16 Mai 2009) | 1 line

  properly lookup __instancecheck__ and __subclasscheck__
................
  r72692 | benjamin.peterson | 2009-05-16 22:30:48 +0000 (Sa, 16 Mai 2009) | 1 line

  deal with old-style classes in issubclass and isinstance
................
  r72693 | benjamin.peterson | 2009-05-16 22:40:56 +0000 (Sa, 16 Mai 2009) | 1 line

  completely ignore old-style stuff for type checking overloading
................
  r72694 | benjamin.peterson | 2009-05-16 22:46:11 +0000 (Sa, 16 Mai 2009) | 1 line

  update
................
  r72696 | benjamin.peterson | 2009-05-16 23:34:19 +0000 (Sa, 16 Mai 2009) | 1 line

  typo
................
  r72698 | hirokazu.yamamoto | 2009-05-17 02:52:09 +0000 (So, 17 Mai 2009) | 1 line

  Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more.
................
  r72699 | hirokazu.yamamoto | 2009-05-17 02:58:36 +0000 (So, 17 Mai 2009) | 1 line

  Added NEWS for r72698.
................
  r72721 | tarek.ziade | 2009-05-17 10:44:12 +0000 (So, 17 Mai 2009) | 1 line

  removed sys.platform == 'mac' support in distutils.dist.parse_command_line and improved test coverage
................
  r72727 | tarek.ziade | 2009-05-17 11:11:57 +0000 (So, 17 Mai 2009) | 1 line

  removed sys.platform == 'mac' usage in distutils.dir_util
................
  r72730 | tarek.ziade | 2009-05-17 11:22:36 +0000 (So, 17 Mai 2009) | 1 line

  pep8-fied distutils.dir_util
................
  r72736 | tarek.ziade | 2009-05-17 12:04:57 +0000 (So, 17 Mai 2009) | 1 line

  pep8-fied distutils.archive_util + added minimum test coverage
................
  r72746 | tarek.ziade | 2009-05-17 14:59:05 +0000 (So, 17 Mai 2009) | 1 line

  fixed the test name
................
  r72764 | tarek.ziade | 2009-05-18 08:20:55 +0000 (Mo, 18 Mai 2009) | 1 line

  working with relative paths to avoid tar warnings on absolute paths
................
  r72768 | tarek.ziade | 2009-05-18 12:21:26 +0000 (Mo, 18 Mai 2009) | 1 line

  Fixed #6053 - win32 fixes for distutils tests
................
  r72774 | raymond.hettinger | 2009-05-18 15:51:59 +0000 (Mo, 18 Mai 2009) | 1 line

  Issue 6037: MutableSequence.__iadd__ should return self.
................
  r72776 | jeffrey.yasskin | 2009-05-18 21:14:54 +0000 (Mo, 18 Mai 2009) | 6 lines

  While I was modifying test_trace, it threw an exception when I accidentally
  made it try to set the line number from the trace callback for a 'call' event.
  This patch makes the error message a little more helpful in that case, and
  makes it a little less likely that a future editor will make the same mistake
  in test_trace.
................
  r72777 | collin.winter | 2009-05-18 21:35:40 +0000 (Mo, 18 Mai 2009) | 1 line

  Issue 6032: fix refleaks in test_urllib2_localnet.
................
  r72786 | raymond.hettinger | 2009-05-19 17:43:59 +0000 (Di, 19 Mai 2009) | 1 line

  Note that ordered dictionaries work with reversed().
................
  r72789 | ronald.oussoren | 2009-05-19 19:29:24 +0000 (Di, 19 Mai 2009) | 2 lines

  Remove some traces of 'MacPython'
................
  r72791 | ronald.oussoren | 2009-05-19 20:12:17 +0000 (Di, 19 Mai 2009) | 2 lines

  Remove some old MacPython files that are no longer relevant.
................
  r72796 | jeffrey.yasskin | 2009-05-20 17:57:57 +0000 (Mi, 20 Mai 2009) | 3 lines

  Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of
  a code object.
................
  r72799 | georg.brandl | 2009-05-20 18:24:08 +0000 (Mi, 20 Mai 2009) | 1 line

  Update bug tracker URL.
................
  r72805 | mark.dickinson | 2009-05-20 18:43:07 +0000 (Mi, 20 Mai 2009) | 1 line

  Issue #5829: don't raise OverflowError for complex('1e500').  Backport of r72803.
................
  r72812 | michael.foord | 2009-05-21 22:57:02 +0000 (Do, 21 Mai 2009) | 1 line

  Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in TestCase subclasses. Issue 6072.
................
  r72813 | raymond.hettinger | 2009-05-22 01:06:44 +0000 (Fr, 22 Mai 2009) | 1 line

  Fix-up moving average example.
................
  r72817 | philip.jenvey | 2009-05-22 05:35:32 +0000 (Fr, 22 Mai 2009) | 4 lines

  don't use subprocess.call with PIPEs as the child can fill the pipe buf and
  deadlock. add a warning to subprocess docs about this, similar to Popen.wait's.
  refs http://bugs.jython.org/issue1351
................
  r72823 | tarek.ziade | 2009-05-22 09:42:43 +0000 (Fr, 22 Mai 2009) | 1 line

  fixed encoding
................
  r72833 | georg.brandl | 2009-05-22 17:00:17 +0000 (Fr, 22 Mai 2009) | 1 line

  #6078: _warnings is a builtin module and has no standard init_warnings function.
................
  r72879 | jeffrey.yasskin | 2009-05-23 23:23:01 +0000 (Sa, 23 Mai 2009) | 14 lines

  Issue #6042:
  lnotab-based tracing is very complicated and isn't documented very well.  There
  were at least 3 comment blocks purporting to document co_lnotab, and none did a
  very good job. This patch unifies them into Objects/lnotab_notes.txt which
  tries to completely capture the current state of affairs.

  I also discovered that we've attached 2 layers of patches to the basic tracing
  scheme. The first layer avoids jumping to instructions that don't start a line,
  to avoid problems in if statements and while loops.  The second layer
  discovered that jumps backward do need to trace at instructions that don't
  start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
  added a special case for backward jumps within the same line. I replaced these
  patches by just treating forward and backward jumps differently.
................
  r72880 | senthil.kumaran | 2009-05-24 09:14:50 +0000 (So, 24 Mai 2009) | 3 lines

  Fixed Issue1424152, urllib2 fails with HTTPS over Proxy.
................
  r72890 | gregory.p.smith | 2009-05-24 18:00:13 +0000 (So, 24 Mai 2009) | 2 lines

  add a versionadded tag for set_tunnel
................
  r72891 | martin.v.loewis | 2009-05-24 19:10:52 +0000 (So, 24 Mai 2009) | 5 lines

  Issue #6065: Do not try to build a version-independent
  installer if the package has extension modules.

  Also add NEWS entry for #5311.
................
  r72898 | antoine.pitrou | 2009-05-24 20:23:57 +0000 (So, 24 Mai 2009) | 6 lines

  Issue #3585: Add pkg-config support.

  It creates a python-2.7.pc file and a python.pc symlink in the
  $(LIBDIR)/pkgconfig directory. Patch by Clinton Roy.
................
  r72900 | antoine.pitrou | 2009-05-24 20:46:06 +0000 (So, 24 Mai 2009) | 3 lines

  Add Misc/python.pc to the list of ignored files
................
  r72903 | benjamin.peterson | 2009-05-24 23:13:32 +0000 (So, 24 Mai 2009) | 1 line

  stop using Py_FindMethod
................
  r72905 | benjamin.peterson | 2009-05-25 00:48:58 +0000 (Mo, 25 Mai 2009) | 4 lines

  make class skipping decorators the same as skipping every test of the class

  This removes ClassTestSuite and a good bit of hacks.
................
  r72907 | benjamin.peterson | 2009-05-25 02:40:21 +0000 (Mo, 25 Mai 2009) | 1 line

  handle errors from _PyObject_LookupSpecial when __get__ fails
................
  r72909 | collin.winter | 2009-05-25 04:34:39 +0000 (Mo, 25 Mai 2009) | 2 lines

  Issue 5670: special-case pickling of dicts. This nearly doubles the performance of dict pickling in cPickle.
................
  r72912 | benjamin.peterson | 2009-05-25 13:13:44 +0000 (Mo, 25 Mai 2009) | 5 lines

  add a SETUP_WITH opcode

  It speeds up the with statement and correctly looks up the special
  methods involved.
................
  r72920 | benjamin.peterson | 2009-05-25 20:12:57 +0000 (Mo, 25 Mai 2009) | 1 line

  take into account the fact that SETUP_WITH pushes a finally block
................
  r72921 | benjamin.peterson | 2009-05-25 20:13:36 +0000 (Mo, 25 Mai 2009) | 1 line

  fix error handling
................
  r72923 | michael.foord | 2009-05-25 20:36:56 +0000 (Mo, 25 Mai 2009) | 1 line

  Make assertSequenceEqual error messages less cryptic, particularly for nested sequences.
................
  r72924 | georg.brandl | 2009-05-25 21:02:56 +0000 (Mo, 25 Mai 2009) | 6 lines

  Allow multiple context managers in one with statement, as proposed
  in http://codereview.appspot.com/53094 and accepted by Guido.

  The construct is transformed into multiple With AST nodes so that
  there should be no problems with the semantics.
................
  r72940 | benjamin.peterson | 2009-05-26 12:49:59 +0000 (Di, 26 Mai 2009) | 1 line

  teach the peepholer about SETUP_WITH
................
  r72956 | raymond.hettinger | 2009-05-27 02:24:45 +0000 (Mi, 27 Mai 2009) | 3 lines

  Fix field name conflicts for named tuples.
................
  r72957 | benjamin.peterson | 2009-05-27 02:43:46 +0000 (Mi, 27 Mai 2009) | 1 line

  correctly handle descrs with __missing__
................
  r72958 | benjamin.peterson | 2009-05-27 03:08:44 +0000 (Mi, 27 Mai 2009) | 1 line

  plug ref leak
................
  r72972 | philip.jenvey | 2009-05-28 03:10:59 +0000 (Do, 28 Mai 2009) | 2 lines

  explicitly close the file, merged from py3k
................
  r72973 | philip.jenvey | 2009-05-28 03:12:16 +0000 (Do, 28 Mai 2009) | 2 lines

  further hint to where the open docs really are
................
  r72979 | philip.jenvey | 2009-05-28 05:58:44 +0000 (Do, 28 Mai 2009) | 2 lines

  explicitly close files
................
  r72981 | tarek.ziade | 2009-05-28 12:53:54 +0000 (Do, 28 Mai 2009) | 1 line

  Fixed #6048: Distutils uses the tarfile module instead of the tar command now
................
  r72986 | tarek.ziade | 2009-05-28 13:55:51 +0000 (Do, 28 Mai 2009) | 1 line

  using 'tar' then 'gzip' in the test, because 'tar -czf' is not supported under some platforms
................
2010-05-19 00:18:20 +00:00
Georg Brandl 9078bc6f9a Merged revisions 72787 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72787 | ronald.oussoren | 2009-05-19 19:06:38 +0000 (Di, 19 Mai 2009) | 8 lines

  This patch ensures that the pydoc_data package gets installed. This is needed
  to make it possible to use pydoc to get access to the language reference.

  That is, without this patch the folllowing won't work:

     >>> help('if')
........
2010-05-19 00:10:00 +00:00
Georg Brandl f72cae4afa Merged revisions 72645 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72645 | antoine.pitrou | 2009-05-14 21:48:09 +0000 (Do, 14 Mai 2009) | 6 lines

  Issue #5918: Fix a crash in the parser module.

  Patch by Amaury.
........
2010-05-19 00:07:47 +00:00
Georg Brandl 4605aa2a09 Blocked revisions 71004,71006,71009,71014,71019,71022-71024,71029,71031-71033,71036,71041,71043,71059,71070,71073,71075,71078,71082,71101,71119,71126-71127,71175,71206,71208,71210,71221,71229,71237,71253,71255,71263,71266,71271,71286,71291,71295,71300,71302-71303,71361,71365,71367,71370,71377,71385,71389,71392,71395-71396,71405-71406,71408,71414,71419,71430,71435,71448,71462,71465,71473,71478,71485,71492,71494,71498,71503,71507,71509,71513,71523,71528,71533,71539,71560,71569,71585,71589,71657,71662,71674,71696,71710,71715,71719,71721,71729,71740,71750,71766,71771-71772,71776,71780,71785,71788,71794,71796,71799,71802,71808,71824,71827,71832,71837-71838,71842,71853,71869,71878,71904,71906,71938,71955,71960-71961,71963,71969,71976 via svnmerge
........
  r71004 | benjamin.peterson | 2009-04-01 23:15:49 +0000 (Mi, 01 Apr 2009) | 1 line

  remove double underscores
........
  r71006 | georg.brandl | 2009-04-01 23:32:17 +0000 (Mi, 01 Apr 2009) | 1 line

  Cache the f_locals dict of the current frame, since every access to frame.f_locals overrides its contents with the real locals which undoes modifications made by the debugging user.
........
  r71009 | jesse.noller | 2009-04-02 00:03:28 +0000 (Do, 02 Apr 2009) | 1 line

  issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin Lowis for help
........
  r71014 | benjamin.peterson | 2009-04-02 01:03:17 +0000 (Do, 02 Apr 2009) | 1 line

  handle SEEK_ constants in test_io
........
  r71019 | georg.brandl | 2009-04-02 02:00:01 +0000 (Do, 02 Apr 2009) | 1 line

  Fix test_doctest, missed two assignments to curframe.
........
  r71022 | jesse.noller | 2009-04-02 02:32:55 +0000 (Do, 02 Apr 2009) | 1 line

  Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin Loewis
........
  r71023 | kurt.kaiser | 2009-04-02 02:44:54 +0000 (Do, 02 Apr 2009) | 3 lines

  Remove port spec from run.py and fix bug where
  subprocess fails to extract port from command line
  when warnings are present.
........
  r71024 | georg.brandl | 2009-04-02 02:47:44 +0000 (Do, 02 Apr 2009) | 4 lines

  In PyErr_GivenExceptionMatches, temporarily bump the recursion
  limit, so that in the most common case PyObject_IsSubclass will
  not raise a recursion error we have to ignore anyway.
........
  r71029 | senthil.kumaran | 2009-04-02 03:00:34 +0000 (Do, 02 Apr 2009) | 3 lines

  Fixing the issue4860. Escaping embedded '"' character in js_output() method of Morsel.
........
  r71031 | brett.cannon | 2009-04-02 03:17:39 +0000 (Do, 02 Apr 2009) | 6 lines

  PyImport_AppendInittab() took a char * as a first argument even though that
  string was stored beyond the life of the call. Changed the signature to be
  const char * to help make this point.

  Closes issue #1419652.
........
  r71032 | michael.foord | 2009-04-02 03:20:38 +0000 (Do, 02 Apr 2009) | 13 lines

  Better exception messages for unittest assert methods.

  - unittest.assertNotEqual() now uses the inequality operator (!=) instead
    of the equality operator.

  - Default assertTrue and assertFalse messages are now useful.

  - TestCase has a longMessage attribute. This defaults to False, but if set to True
    useful error messages are shown in addition to explicit messages passed to assert methods.

  Issue #5663
........
  r71033 | brett.cannon | 2009-04-02 03:34:53 +0000 (Do, 02 Apr 2009) | 3 lines

  Fix two issues introduced by issue #71031 by changing the signature of
  PyImport_AppendInittab() to take a const char *.
........
  r71036 | jesse.noller | 2009-04-02 04:22:09 +0000 (Do, 02 Apr 2009) | 1 line

  Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES
........
  r71041 | jesse.noller | 2009-04-02 05:17:26 +0000 (Do, 02 Apr 2009) | 1 line

  Add custom initializer argument to multiprocess.Manager*, courtesy of lekma
........
  r71043 | michael.foord | 2009-04-02 05:51:54 +0000 (Do, 02 Apr 2009) | 7 lines

  Store the functions in the _type_equality_funcs as wrapped objects that are deep copyable.

  This allows for the deep copying of TestCase instances.

  Issue 5660
........
  r71059 | mark.dickinson | 2009-04-02 18:39:37 +0000 (Do, 02 Apr 2009) | 2 lines

  sys.long_info attributes should be ints, not longs
........
  r71070 | antoine.pitrou | 2009-04-02 21:18:34 +0000 (Do, 02 Apr 2009) | 3 lines

  Issue #2396: backport the memoryview object.
........
  r71073 | raymond.hettinger | 2009-04-02 22:25:40 +0000 (Do, 02 Apr 2009) | 4 lines

  Have namedtuple's field renamer assign names that
  are consistent with the corresponding tuple index.
........
  r71075 | raymond.hettinger | 2009-04-02 22:34:17 +0000 (Do, 02 Apr 2009) | 1 line

  Update docs for namedtuple's renaming change.
........
  r71078 | raymond.hettinger | 2009-04-03 02:43:54 +0000 (Fr, 03 Apr 2009) | 4 lines

  Localize the function lookup in timeit.
........
  r71082 | hirokazu.yamamoto | 2009-04-03 03:54:08 +0000 (Fr, 03 Apr 2009) | 1 line

  Fixed compile error on windows.
........
  r71101 | andrew.kuchling | 2009-04-03 21:43:00 +0000 (Fr, 03 Apr 2009) | 1 line

  Add some items
........
  r71119 | raymond.hettinger | 2009-04-04 05:37:47 +0000 (Sa, 04 Apr 2009) | 1 line

  Add helpful link.
........
  r71126 | kurt.kaiser | 2009-04-04 07:03:48 +0000 (Sa, 04 Apr 2009) | 5 lines

  Allow multiple IDLE GUI/subprocess pairs to exist
  simultaneously. Thanks to David Scherer for suggesting
  the use of an ephemeral port for the GUI.
  Patch 1529142 Weeble.
........
  r71127 | raymond.hettinger | 2009-04-04 08:46:58 +0000 (Sa, 04 Apr 2009) | 1 line

  Replace the localized min/max calls with normal if/else
........
  r71175 | hirokazu.yamamoto | 2009-04-04 17:20:05 +0000 (Sa, 04 Apr 2009) | 1 line

  No behavior change.
........
  r71206 | benjamin.peterson | 2009-04-05 01:04:38 +0000 (So, 05 Apr 2009) | 1 line

  compare types with is
........
  r71208 | michael.foord | 2009-04-05 01:15:01 +0000 (So, 05 Apr 2009) | 4 lines

  Change the way unittest.TestSuite use their tests to always access them through iteration. Non behavior changing, this allows you to create custom subclasses that override __iter__.

  Issue #5693
........
  r71210 | guilherme.polo | 2009-04-05 02:11:19 +0000 (So, 05 Apr 2009) | 1 line

  Include tkinter.h only after including tk.h (or the equivalent for another platform).
........
  r71221 | vinay.sajip | 2009-04-05 11:06:24 +0000 (So, 05 Apr 2009) | 1 line

  Issue #5695: Moved logging.captureWarnings() call inside with statement in WarningsTest.test_warnings.
........
  r71229 | matthias.klose | 2009-04-05 12:43:08 +0000 (So, 05 Apr 2009) | 3 lines

  - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.
    (avoiding brown paper typo this time)
........
  r71237 | georg.brandl | 2009-04-05 14:24:52 +0000 (So, 05 Apr 2009) | 1 line

  #1326077: fix traceback formatting of SyntaxErrors.  This fixes two differences with formatting coming from Python: a) the reproduction of location details in the error message if no line text is given, b) the prefixing of the last line by one space.
........
  r71253 | tarek.ziade | 2009-04-05 18:31:24 +0000 (So, 05 Apr 2009) | 1 line

  Fixed 5694: removed spurious test output in Distutils
........
  r71255 | georg.brandl | 2009-04-05 18:34:58 +0000 (So, 05 Apr 2009) | 1 line

  #602893: add indicator for current line in cgitb that doesnt rely on styling alone.
........
  r71263 | michael.foord | 2009-04-05 19:19:28 +0000 (So, 05 Apr 2009) | 4 lines

  Adding assertIs and assertIsNot methods to unittest.TestCase

  Issue #2578
........
  r71266 | georg.brandl | 2009-04-05 20:23:13 +0000 (So, 05 Apr 2009) | 1 line

  Normalize issue referencing style.
........
  r71271 | matthias.klose | 2009-04-05 21:19:13 +0000 (So, 05 Apr 2009) | 3 lines

  Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'
  to avoid compiler warnings.
........
  r71286 | tarek.ziade | 2009-04-05 22:04:38 +0000 (So, 05 Apr 2009) | 1 line

  added a simplest test to distutils.spawn._nt_quote_args
........
  r71291 | tarek.ziade | 2009-04-05 22:51:09 +0000 (So, 05 Apr 2009) | 1 line

  Fixed #5095: msi missing from Distutils bdist formats
........
  r71295 | tarek.ziade | 2009-04-05 23:03:10 +0000 (So, 05 Apr 2009) | 1 line

  pep8-fied method names
........
  r71300 | gregory.p.smith | 2009-04-05 23:48:26 +0000 (So, 05 Apr 2009) | 2 lines

  news entry for r71299.
........
  r71302 | jack.diederich | 2009-04-06 02:08:44 +0000 (Mo, 06 Apr 2009) | 1 line

  test the telnetlib.Telnet interface more thoroughly
........
  r71303 | gregory.p.smith | 2009-04-06 06:33:26 +0000 (Mo, 06 Apr 2009) | 3 lines

  - Issue #2254: Fix CGIHTTPServer information disclosure.  Relative paths are
    now collapsed within the url properly before looking in cgi_directories.
........
  r71361 | benjamin.peterson | 2009-04-07 15:15:04 +0000 (Di, 07 Apr 2009) | 1 line

  fix syntax tests after formatting change
........
  r71365 | benjamin.peterson | 2009-04-07 15:52:05 +0000 (Di, 07 Apr 2009) | 1 line

  fix since difference formating of SyntaxErrors
........
  r71367 | benjamin.peterson | 2009-04-07 16:03:04 +0000 (Di, 07 Apr 2009) | 1 line

  revert unrelated change to test_telnetlib
........
  r71370 | vinay.sajip | 2009-04-07 17:18:24 +0000 (Di, 07 Apr 2009) | 1 line

  Issue #5695: Minor tweak to improve the code as suggested by Brett Cannon and as implemented in the Py3K branch.
........
  r71377 | jack.diederich | 2009-04-07 20:22:59 +0000 (Di, 07 Apr 2009) | 1 line

  eliminate more race conditions in telnetlib tests
........
  r71385 | jack.diederich | 2009-04-07 23:56:57 +0000 (Di, 07 Apr 2009) | 4 lines

  - Make timing assertions very generous (a la test_timeout.py)
  - Break the gc cycle in negotiation tests
  - test the different guarantees of read_lazy and read_very_lazy
........
  r71389 | raymond.hettinger | 2009-04-08 05:39:38 +0000 (Mi, 08 Apr 2009) | 1 line

  Add docstrings.
........
  r71392 | raymond.hettinger | 2009-04-08 08:26:55 +0000 (Mi, 08 Apr 2009) | 1 line

  Minor factoring.
........
  r71395 | benjamin.peterson | 2009-04-08 13:27:29 +0000 (Mi, 08 Apr 2009) | 1 line

  these must be installed to correctly run tests
........
  r71396 | benjamin.peterson | 2009-04-08 13:29:41 +0000 (Mi, 08 Apr 2009) | 1 line

  fix syntax
........
  r71405 | andrew.kuchling | 2009-04-09 11:22:47 +0000 (Do, 09 Apr 2009) | 1 line

  Add items
........
  r71406 | andrew.kuchling | 2009-04-09 11:23:36 +0000 (Do, 09 Apr 2009) | 1 line

  Typo fixes
........
  r71408 | collin.winter | 2009-04-09 16:46:46 +0000 (Do, 09 Apr 2009) | 11 lines

  Issue 5665: add more pickling tests.

  - Add tests for the module-level load() and dump() functions.
  - Add tests for cPickle's internal data structures, stressing workloads
  with many gets/puts.
  - Add tests for the Pickler and Unpickler classes, in particular the
  memo attribute.
  - test_xpickle is extended to test backwards compatibility with Python
  2.4, 2.5 and 2.6 by round-tripping pickled objects through a worker
  process. This is guarded with a regrtest -u xpickle resource.
........
  r71414 | r.david.murray | 2009-04-09 21:54:50 +0000 (Do, 09 Apr 2009) | 3 lines

  Issue #2170: refactored xml.dom.minidom.normalize, increasing both
  its clarity and its speed.
........
  r71419 | raymond.hettinger | 2009-04-09 22:31:51 +0000 (Do, 09 Apr 2009) | 1 line

  Add note on using keyword arguments with OrderedDict.
........
  r71430 | raymond.hettinger | 2009-04-10 04:25:45 +0000 (Fr, 10 Apr 2009) | 1 line

  Clarify the table entries for combinatorics.
........
  r71435 | raymond.hettinger | 2009-04-10 06:38:39 +0000 (Fr, 10 Apr 2009) | 1 line

  Fix the count of datatypes.
........
  r71448 | raymond.hettinger | 2009-04-10 13:16:50 +0000 (Fr, 10 Apr 2009) | 1 line

  Add examples.
........
  r71462 | chris.withers | 2009-04-11 11:22:19 +0000 (Sa, 11 Apr 2009) | 2 lines

  remove unpleasant exec
........
  r71465 | nick.coghlan | 2009-04-11 13:31:31 +0000 (Sa, 11 Apr 2009) | 1 line

  Issue 5354: Provide a standardised testing mechanism for doing fresh imports of modules, including the ability to block extension modules in order to test the pure Python fallbacks
........
  r71473 | tarek.ziade | 2009-04-11 14:55:07 +0000 (Sa, 11 Apr 2009) | 1 line

  #5732: added the check command into Distutils
........
  r71478 | tarek.ziade | 2009-04-11 15:14:17 +0000 (Sa, 11 Apr 2009) | 1 line

  testing a full check case
........
  r71485 | andrew.kuchling | 2009-04-11 16:12:23 +0000 (Sa, 11 Apr 2009) | 1 line

  Add various items
........
  r71492 | georg.brandl | 2009-04-11 18:19:27 +0000 (Sa, 11 Apr 2009) | 1 line

  Take credit for a patch of mine.
........
  r71494 | benjamin.peterson | 2009-04-11 19:31:00 +0000 (Sa, 11 Apr 2009) | 1 line

  ignore py3_test_grammar when compiling the library
........
  r71498 | benjamin.peterson | 2009-04-11 20:27:15 +0000 (Sa, 11 Apr 2009) | 1 line

  fix markup
........
  r71503 | eric.smith | 2009-04-12 02:57:29 +0000 (So, 12 Apr 2009) | 1 line

  Take credit for my patch for issue 5237.
........
  r71507 | georg.brandl | 2009-04-12 12:08:12 +0000 (So, 12 Apr 2009) | 1 line

  #5704: let python -3 imply -t as well.
........
  r71509 | tarek.ziade | 2009-04-12 14:53:51 +0000 (So, 12 Apr 2009) | 1 line

  removed the print statements and added a test
........
  r71513 | tarek.ziade | 2009-04-12 15:03:50 +0000 (So, 12 Apr 2009) | 1 line

  pep8-fied the module before adding tests
........
  r71523 | tarek.ziade | 2009-04-12 16:31:24 +0000 (So, 12 Apr 2009) | 1 line

  added a simple test for search_cpp
........
  r71528 | tarek.ziade | 2009-04-12 16:45:32 +0000 (So, 12 Apr 2009) | 1 line

  added a test for finalize_options
........
  r71533 | tarek.ziade | 2009-04-12 17:02:08 +0000 (So, 12 Apr 2009) | 1 line

  removed string usage and added a test for _clean
........
  r71539 | benjamin.peterson | 2009-04-12 20:24:56 +0000 (So, 12 Apr 2009) | 1 line

  remove useless import
........
  r71560 | tarek.ziade | 2009-04-13 12:34:01 +0000 (Mo, 13 Apr 2009) | 1 line

  Fixed #5607: Distutils test_get_platform was failing fo Mac OS X fat binaries.
........
  r71569 | tarek.ziade | 2009-04-13 12:42:26 +0000 (Mo, 13 Apr 2009) | 1 line

  deactivate test_search_cpp under win32
........
  r71585 | tarek.ziade | 2009-04-13 20:03:44 +0000 (Mo, 13 Apr 2009) | 1 line

  improved test coverage for distutils.cmd
........
  r71589 | tarek.ziade | 2009-04-13 20:14:54 +0000 (Mo, 13 Apr 2009) | 1 line

  pep8-fied
........
  r71657 | vinay.sajip | 2009-04-16 19:07:37 +0000 (Do, 16 Apr 2009) | 1 line

  Issue #5768: Change to Unicode output logic and test case for same.
........
  r71662 | vinay.sajip | 2009-04-16 19:15:49 +0000 (Do, 16 Apr 2009) | 1 line

  Issue #5768: Change to Unicode output logic and test case for same.
........
  r71674 | tarek.ziade | 2009-04-17 14:29:56 +0000 (Fr, 17 Apr 2009) | 1 line

  DistutilsSetupError was not raised when one single warning occured
........
  r71696 | georg.brandl | 2009-04-18 08:26:21 +0000 (Sa, 18 Apr 2009) | 1 line

  "not subscriptable" should be a bit more understandable than "unsubscriptable".
........
  r71710 | mark.dickinson | 2009-04-18 14:41:37 +0000 (Sa, 18 Apr 2009) | 2 lines

  Backport r71704 (add configure check for C99 round function) to trunk.
........
  r71715 | mark.dickinson | 2009-04-18 14:59:42 +0000 (Sa, 18 Apr 2009) | 2 lines

  Issue #1869: Fix a couple of minor round() issues.
........
  r71719 | benjamin.peterson | 2009-04-18 15:31:34 +0000 (Sa, 18 Apr 2009) | 1 line

  rename internal bytes_ functions to bytearray
........
  r71721 | benjamin.peterson | 2009-04-18 19:26:19 +0000 (Sa, 18 Apr 2009) | 1 line

  fix a few nits in unittest.py #5771
........
  r71729 | benjamin.peterson | 2009-04-18 21:03:10 +0000 (Sa, 18 Apr 2009) | 1 line

  move test to a more appropiate one
........
  r71740 | benjamin.peterson | 2009-04-19 03:02:54 +0000 (So, 19 Apr 2009) | 1 line

  fix typo
........
  r71750 | mark.dickinson | 2009-04-19 17:10:47 +0000 (So, 19 Apr 2009) | 3 lines

  Automatic conversion of floats to integers for struct.pack integer codes
  is deprecated.  Use an explicit int() instead.
........
  r71766 | tarek.ziade | 2009-04-20 14:29:42 +0000 (Mo, 20 Apr 2009) | 1 line

  adding a NEWS note for #5795 (previously checked via the buildbot)
........
  r71771 | raymond.hettinger | 2009-04-20 18:23:57 +0000 (Mo, 20 Apr 2009) | 1 line

  Fix typo
........
  r71772 | mark.dickinson | 2009-04-20 21:13:33 +0000 (Mo, 20 Apr 2009) | 5 lines

  Issue #3166: Make long -> float (and int -> float) conversions
  correctly rounded, using round-half-to-even.  This ensures that the
  value of float(n) doesn't depend on whether we're using 15-bit digits
  or 30-bit digits for Python longs.
........
  r71776 | mark.dickinson | 2009-04-20 21:41:04 +0000 (Mo, 20 Apr 2009) | 2 lines

  Nit: integer division should use //, not /
........
  r71780 | senthil.kumaran | 2009-04-21 03:24:19 +0000 (Di, 21 Apr 2009) | 3 lines

  Fix for the Issue918368 - urllib doesn't correct server returned urls
........
  r71785 | r.david.murray | 2009-04-21 13:06:04 +0000 (Di, 21 Apr 2009) | 4 lines

  Restore skips of posix and pty tests on Windows by calling the
  test_support.import_module on the appropriate modules
  before any other imports.
........
  r71788 | eric.smith | 2009-04-22 00:47:00 +0000 (Mi, 22 Apr 2009) | 1 line

  Documentation for issue 5237, auto-numbered format fields. Contributed by Terry J. Reedy.
........
  r71794 | vinay.sajip | 2009-04-22 12:10:47 +0000 (Mi, 22 Apr 2009) | 2 lines

  Issue #5170: Fixed regression caused when fixing #5768.
........
  r71796 | eric.smith | 2009-04-22 13:29:05 +0000 (Mi, 22 Apr 2009) | 20 lines

  Backport of some of the work in r71665 to trunk. This reworks much of
  int, long, and float __format__(), and it keeps their implementation
  in sync with py3k.

  Also added PyOS_double_to_string. This is the "fallback" version
  that's also available in trunk, and should be kept in sync with that
  code. I'll add an issue to document PyOS_double_to_string in the C
  API.

  There are many internal cleanups. Externally visible changes include:

  - Implement PEP 378, Format Specifier for Thousands Separator, for
    floats, ints, and longs.

  - Issue #5515: 'n' formatting for ints, longs, and floats handles
    leading zero formatting poorly.

  - Issue #5772: For float.__format__, don't add a trailing ".0" if
    we're using no type code and we have an exponent.
........
  r71799 | nick.coghlan | 2009-04-22 15:26:04 +0000 (Mi, 22 Apr 2009) | 1 line

  Issue 5354: Change API for import_fresh_module() to better support test_warnings use case (also fixes some bugs in the original implementation)
........
  r71802 | eric.smith | 2009-04-22 16:20:47 +0000 (Mi, 22 Apr 2009) | 1 line

  Fixed issue 5782: formatting with commas didn't work if no specifier type code was given.
........
  r71808 | mark.dickinson | 2009-04-22 18:15:25 +0000 (Mi, 22 Apr 2009) | 2 lines

  Issue #5812: make Fraction('1e-6') valid.  Backport of r71806.
........
  r71824 | mark.dickinson | 2009-04-24 12:46:53 +0000 (Fr, 24 Apr 2009) | 7 lines

  Issue #5816:
   - simplify parsing and printing of complex numbers
   - make complex(repr(z)) round-tripping work for complex
     numbers involving nans, infs, or negative zeros
   - don't accept some of the stranger complex strings
     that were previously allowed---e.g., complex('1..1j')
........
  r71827 | mark.dickinson | 2009-04-24 13:14:07 +0000 (Fr, 24 Apr 2009) | 2 lines

  Fix missing 'return NULL'
........
  r71832 | mark.dickinson | 2009-04-24 13:56:07 +0000 (Fr, 24 Apr 2009) | 3 lines

  Issue #5812: The two-argument form of the Fraction constructor
  now accepts arbitrary Rational instances.
........
  r71837 | mark.dickinson | 2009-04-24 16:34:14 +0000 (Fr, 24 Apr 2009) | 4 lines

  Issue #5593: Use more robust test for double-rounding in test_fsum.
  While we're at it, use new unittest.skipUnless decorator to
  implement skipping for that test.
........
  r71838 | mark.dickinson | 2009-04-24 16:37:22 +0000 (Fr, 24 Apr 2009) | 2 lines

  Remove unnecessary double negative
........
  r71842 | thomas.heller | 2009-04-24 18:10:46 +0000 (Fr, 24 Apr 2009) | 3 lines

  Issue #5161: wrong paths for ctypes cleanup when Python is built in a
  directory other than the source directory.
........
  r71853 | thomas.heller | 2009-04-24 20:31:47 +0000 (Fr, 24 Apr 2009) | 3 lines

  Issue #3102: All global symbols that the _ctypes extension defines are
  now prefixed with 'Py' or '_ctypes'.
........
  r71869 | mark.dickinson | 2009-04-25 09:47:00 +0000 (Sa, 25 Apr 2009) | 2 lines

  Fix typo in complex parsing code;  expand tests.
........
  r71878 | tarek.ziade | 2009-04-25 12:38:08 +0000 (Sa, 25 Apr 2009) | 1 line

  Issue #4951: Fixed failure in test_httpservers
........
  r71904 | georg.brandl | 2009-04-25 15:11:29 +0000 (Sa, 25 Apr 2009) | 1 line

  #5841: add deprecation py3k warning and notice in the docs for commands module.
........
  r71906 | thomas.heller | 2009-04-25 16:37:18 +0000 (Sa, 25 Apr 2009) | 1 line

  Issue #5078: Avoid redundant call to FormatError()
........
  r71938 | eric.smith | 2009-04-25 21:40:15 +0000 (Sa, 25 Apr 2009) | 5 lines

  Issue #5835, deprecate PyOS_ascii_formatd.

  If anyone wants to clean up the documentation, feel free. It's my first documentation foray, and it's not that great.

  Will port to py3k with a different strategy.
........
  r71955 | georg.brandl | 2009-04-26 06:01:04 +0000 (So, 26 Apr 2009) | 1 line

  Mostly formatting nits, and "and-ed together" -> "or-ed together" flags.
........
  r71960 | georg.brandl | 2009-04-26 09:56:44 +0000 (So, 26 Apr 2009) | 1 line

  Move pydoc_topics module to its own subdirectory, so that no generated code is in Lib/.
........
  r71961 | georg.brandl | 2009-04-26 09:57:29 +0000 (So, 26 Apr 2009) | 2 lines

  Update pydoc topics.
........
  r71963 | mark.dickinson | 2009-04-26 14:00:08 +0000 (So, 26 Apr 2009) | 2 lines

  Reset errno before both calls to PyOS_ascii_strtod, not just one.
........
  r71969 | mark.dickinson | 2009-04-26 16:04:05 +0000 (So, 26 Apr 2009) | 3 lines

  Backport r71967 changes from py3k to trunk.
  (Internal plumbing changes for float parsing.)
........
  r71976 | mark.dickinson | 2009-04-26 19:54:55 +0000 (So, 26 Apr 2009) | 2 lines

  Fix typo in function name
........
2010-05-18 23:58:06 +00:00
Georg Brandl 53b7cef70c Blocked revisions 70000,70003,70007,70011,70016-70017,70022-70023,70025-70026,70049,70071,70081,70090,70094,70119-70123,70126,70131-70132,70136,70145,70149,70153,70166,70178,70188,70212,70223,70235,70261,70267,70271,70273,70275,70281,70286,70293,70295-70296,70298,70300,70305,70308,70319,70342,70364,70378,70385-70387,70389-70390,70392-70393,70395,70397,70400,70405-70406,70418,70439,70443-70444,70454,70466,70468,70470-70473,70475,70477,70479,70485,70489,70533,70538,70542,70544,70546,70550,70552-70555,70558,70561-70564,70568-70571,70574,70578,70588-70589,70598-70599,70601,70605,70611-70621,70623-70624,70626-70627,70641,70647,70651-70652,70668-70669,70671-70672,70674,70691,70698,70700-70703,70706,70711-70712,70716,70734-70735,70747,70757,70770-70772,70775,70777-70779,70788,70807,70821,70837,70844,70856,70864,70869,70872,70874,70876-70878,70883,70885-70886,70888-70892,70894,70901,70903,70910,70918,70920,70922,70930-70931,70936,70939,70951,70956,70958,70965,70968-70969,70975,70979-70981,70986,70992-70995,70997 via svnmerge
........
  r70000 | benjamin.peterson | 2009-02-26 19:07:18 +0000 (Do, 26 Feb 2009) | 1 line

  remove deprecated symtable.Symbol methods
........
  r70003 | tarek.ziade | 2009-02-26 23:44:00 +0000 (Do, 26 Feb 2009) | 1 line

  removed unused import
........
  r70007 | tarek.ziade | 2009-02-27 02:14:35 +0000 (Fr, 27 Feb 2009) | 1 line

  more info on long_description
........
  r70011 | brett.cannon | 2009-02-27 03:38:28 +0000 (Fr, 27 Feb 2009) | 5 lines

  Fix a bug where code was trying to index an int. Left over from the situation
  from using str.rpartition to str.rindex.

  Closes Issue5213.
........
  r70016 | raymond.hettinger | 2009-02-27 08:09:47 +0000 (Fr, 27 Feb 2009) | 1 line

  Give mapping views a usable repr.
........
  r70017 | tarek.ziade | 2009-02-27 12:53:34 +0000 (Fr, 27 Feb 2009) | 1 line

  Issue #5052: make Distutils compatible with 2.3 again.
........
  r70022 | georg.brandl | 2009-02-27 16:23:18 +0000 (Fr, 27 Feb 2009) | 1 line

  #5361: fix typo.
........
  r70023 | georg.brandl | 2009-02-27 16:39:26 +0000 (Fr, 27 Feb 2009) | 1 line

  #5363: fix cmpfiles() docs. Another instance where a prose description is twice as long as the code.
........
  r70025 | georg.brandl | 2009-02-27 16:52:55 +0000 (Fr, 27 Feb 2009) | 1 line

  #5344: fix punctuation.
........
  r70026 | georg.brandl | 2009-02-27 16:59:03 +0000 (Fr, 27 Feb 2009) | 1 line

  #5365: add quick look conversion table for different time representations.
........
  r70049 | tarek.ziade | 2009-02-28 10:08:02 +0000 (Sa, 28 Feb 2009) | 1 line

  Issues #1533164 and #5378: Added quiet and force-optimize options to Distutils bdist_rpm command
........
  r70071 | jeffrey.yasskin | 2009-02-28 19:03:21 +0000 (Sa, 28 Feb 2009) | 5 lines

  Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with
  POP_JUMP_IF_{TRUE,FALSE} and JUMP_IF_{TRUE,FALSE}_OR_POP. This avoids executing
  a POP_TOP on each conditional and sometimes allows the peephole optimizer to
  skip a JUMP_ABSOLUTE entirely. It speeds up list comprehensions significantly.
........
  r70081 | raymond.hettinger | 2009-03-01 02:04:32 +0000 (So, 01 Mär 2009) | 1 line

  Fix docs for ConfigParser.
........
  r70090 | gregory.p.smith | 2009-03-02 05:13:57 +0000 (Mo, 02 Mär 2009) | 3 lines

  Adds an optional flags argument to re.split, re.sub and re.subn to be
  consistent with the other re module functions.
........
  r70094 | tarek.ziade | 2009-03-02 05:38:44 +0000 (Mo, 02 Mär 2009) | 1 line

  removing the force-optimized option as discussed in #1533164
........
  r70119 | kristjan.jonsson | 2009-03-03 03:20:42 +0000 (Di, 03 Mär 2009) | 1 line

  Fix SHA_new and MD5_new, that would crash if not given initial data
........
  r70120 | raymond.hettinger | 2009-03-03 04:45:34 +0000 (Di, 03 Mär 2009) | 1 line

  Backport PEP 372: OrderedDict()
........
  r70121 | raymond.hettinger | 2009-03-03 04:51:24 +0000 (Di, 03 Mär 2009) | 3 lines

  Backport 70106: Add OrderedDict support to collections.namedtuple().
........
  r70122 | raymond.hettinger | 2009-03-03 05:00:37 +0000 (Di, 03 Mär 2009) | 3 lines

  Backport 70111: Let configparser use ordered dicts by default.
........
  r70123 | raymond.hettinger | 2009-03-03 05:11:56 +0000 (Di, 03 Mär 2009) | 1 line

  Fix markup.
........
  r70126 | raymond.hettinger | 2009-03-03 07:12:09 +0000 (Di, 03 Mär 2009) | 1 line

  Beef-up tests.
........
  r70131 | raymond.hettinger | 2009-03-03 20:53:51 +0000 (Di, 03 Mär 2009) | 1 line

  Make the underlying data structure more private.
........
  r70132 | raymond.hettinger | 2009-03-03 21:13:51 +0000 (Di, 03 Mär 2009) | 1 line

  Minor simplification.
........
  r70136 | hirokazu.yamamoto | 2009-03-03 22:05:57 +0000 (Di, 03 Mär 2009) | 1 line

  Fixed memory leak.
........
  r70145 | benjamin.peterson | 2009-03-03 22:51:57 +0000 (Di, 03 Mär 2009) | 1 line

  making the writing more formal
........
  r70149 | raymond.hettinger | 2009-03-03 22:59:25 +0000 (Di, 03 Mär 2009) | 5 lines

  Backport 70140, 70141, 70143, and 70144.
  Adds tests, switches from list to deque, fixes __reduce__
  which was unnecessarily copying __keys.
........
  r70153 | brett.cannon | 2009-03-04 01:00:53 +0000 (Mi, 04 Mär 2009) | 4 lines

  Fix some more bugs caused by the backport from 3.x for importlib.
  Do a more exact copy of the final 3.x code to resolve bugs and add
  appropriate tests.
........
  r70166 | georg.brandl | 2009-03-04 18:24:41 +0000 (Mi, 04 Mär 2009) | 2 lines

  Remove obsolete stuff from string module docs.
........
  r70178 | ronald.oussoren | 2009-03-04 22:49:36 +0000 (Mi, 04 Mär 2009) | 2 lines

  Fix for issue #1113328.
........
  r70188 | hirokazu.yamamoto | 2009-03-05 09:34:14 +0000 (Do, 05 Mär 2009) | 1 line

  Fixed memory leak on failure.
........
  r70212 | tarek.ziade | 2009-03-07 00:32:45 +0000 (Sa, 07 Mär 2009) | 1 line

  Issue #5394: removed > 2.3 syntax from distutils.msvc9compiler
........
  r70223 | guilherme.polo | 2009-03-07 02:14:38 +0000 (Sa, 07 Mär 2009) | 4 lines

  Fixed issue #2638: Show a window constructed with tkSimpleDialog.Dialog only
  after it is has been populated and properly configured in order to prevent
  window flashing.
........
  r70235 | benjamin.peterson | 2009-03-08 00:21:17 +0000 (So, 08 Mär 2009) | 1 line

  fix funky indentation
........
  r70261 | raymond.hettinger | 2009-03-09 11:31:39 +0000 (Mo, 09 Mär 2009) | 1 line

  Issue 5443: Fix typo.
........
  r70267 | raymond.hettinger | 2009-03-09 11:57:29 +0000 (Mo, 09 Mär 2009) | 1 line

  Add consume() recipe to itertools docs.
........
  r70271 | raymond.hettinger | 2009-03-09 12:56:23 +0000 (Mo, 09 Mär 2009) | 1 line

  Add cross-reference to the collections docs.
........
  r70273 | georg.brandl | 2009-03-09 14:25:07 +0000 (Mo, 09 Mär 2009) | 2 lines

  #5458: add a note when we started to raise RuntimeErrors.
........
  r70275 | georg.brandl | 2009-03-09 16:35:48 +0000 (Mo, 09 Mär 2009) | 2 lines

  Add missing space.
........
  r70281 | benjamin.peterson | 2009-03-09 20:38:56 +0000 (Mo, 09 Mär 2009) | 1 line

  gzip and bz2 are context managers
........
  r70286 | raymond.hettinger | 2009-03-10 00:06:05 +0000 (Di, 10 Mär 2009) | 1 line

  Fix markup.
........
  r70293 | raymond.hettinger | 2009-03-10 04:49:21 +0000 (Di, 10 Mär 2009) | 1 line

  Add a version tag to the decimal module.
........
  r70295 | raymond.hettinger | 2009-03-10 08:16:05 +0000 (Di, 10 Mär 2009) | 1 line

  Update the decimal FAQ for the from_float() classmethod and improve the recipe for remove_exponent() to make it cut and pasteable.
........
  r70296 | raymond.hettinger | 2009-03-10 09:31:48 +0000 (Di, 10 Mär 2009) | 1 line

  Small optimization for corner case where maxlen==0.
........
  r70298 | raymond.hettinger | 2009-03-10 12:50:59 +0000 (Di, 10 Mär 2009) | 1 line

  For collections.deque() objects, expose the maxlen parameter as a read-only attribute.
........
  r70300 | raymond.hettinger | 2009-03-10 13:04:30 +0000 (Di, 10 Mär 2009) | 1 line

  Fix typo.
........
  r70305 | brett.cannon | 2009-03-11 04:51:06 +0000 (Mi, 11 Mär 2009) | 5 lines

  Require implementations for warnings.showwarning() support the 'line' argument.
  Was a DeprecationWarning for not supporting it since Python 2.6.

  Closes issue #3652.
........
  r70308 | tarek.ziade | 2009-03-11 12:48:04 +0000 (Mi, 11 Mär 2009) | 1 line

  Issue #5472: Fixed distutils.test_util tear down
........
  r70319 | raymond.hettinger | 2009-03-12 00:31:58 +0000 (Do, 12 Mär 2009) | 1 line

  Issue 5477: Fix buglet in the itertools documentation.
........
  r70342 | georg.brandl | 2009-03-13 19:03:58 +0000 (Fr, 13 Mär 2009) | 1 line

  #5486: typos.
........
  r70364 | eric.smith | 2009-03-14 11:57:26 +0000 (Sa, 14 Mär 2009) | 17 lines

  Issue 5237, Allow auto-numbered replacement fields in str.format() strings.

  For simple uses for str.format(), this makes the typing easier. Hopfully this
  will help in the adoption of str.format().

  For example:
  'The {} is {}'.format('sky', 'blue')

  You can mix and matcth auto-numbering and named replacement fields:
  'The {} is {color}'.format('sky', color='blue')

  But you can't mix and match auto-numbering and specified numbering:
  'The {0} is {}'.format('sky', 'blue')
  ValueError: cannot switch from manual field specification to automatic field numbering

  Will port to 3.1.
........
  r70378 | nick.coghlan | 2009-03-15 03:24:46 +0000 (So, 15 Mär 2009) | 1 line

  Make marshalling errors a little more informative as to what went wrong
........
  r70385 | benjamin.peterson | 2009-03-15 14:38:55 +0000 (So, 15 Mär 2009) | 1 line

  fix tuple.index() error message #5495
........
  r70386 | georg.brandl | 2009-03-15 21:32:06 +0000 (So, 15 Mär 2009) | 1 line

  #5496: fix docstring of lookup().
........
  r70387 | georg.brandl | 2009-03-15 21:37:16 +0000 (So, 15 Mär 2009) | 1 line

  #5493: clarify __nonzero__ docs.
........
  r70389 | georg.brandl | 2009-03-15 21:43:38 +0000 (So, 15 Mär 2009) | 1 line

  Fix a small nit in the error message if bool() falls back on __len__ and it returns the wrong type: it would tell the user that __nonzero__ should return bool or int.
........
  r70390 | georg.brandl | 2009-03-15 21:44:43 +0000 (So, 15 Mär 2009) | 1 line

  #5491: clarify nested() semantics.
........
  r70392 | georg.brandl | 2009-03-15 21:46:00 +0000 (So, 15 Mär 2009) | 1 line

  #5488: add missing struct member.
........
  r70393 | georg.brandl | 2009-03-15 21:47:42 +0000 (So, 15 Mär 2009) | 1 line

  #5478: fix copy-paste oversight in function signature.
........
  r70395 | georg.brandl | 2009-03-15 21:51:48 +0000 (So, 15 Mär 2009) | 1 line

  #5276: document IDLESTARTUP and .Idle.py.
........
  r70397 | georg.brandl | 2009-03-15 21:53:56 +0000 (So, 15 Mär 2009) | 1 line

  #5469: add with statement to list of name-binding constructs.
........
  r70400 | georg.brandl | 2009-03-15 21:59:37 +0000 (So, 15 Mär 2009) | 3 lines

  Fix markup in re docs and give a mail address in regex howto, so that
  the recommendation to send suggestions to the author can be followed.
........
  r70405 | georg.brandl | 2009-03-15 22:11:07 +0000 (So, 15 Mär 2009) | 7 lines

  Move the previously local import of threading to module level.

  This is cleaner and avoids lockups in obscure cases where a Queue
  is instantiated while the import lock is already held by another thread.

  OKed by Tim Peters.
........
  r70406 | hirokazu.yamamoto | 2009-03-15 22:43:14 +0000 (So, 15 Mär 2009) | 1 line

  Added skip for old MSVC.
........
  r70418 | georg.brandl | 2009-03-16 19:42:03 +0000 (Mo, 16 Mär 2009) | 1 line

  Add token markup.
........
  r70439 | mark.dickinson | 2009-03-17 23:03:46 +0000 (Di, 17 Mär 2009) | 3 lines

  Issue #2110:  Add support for thousands separator and 'n' format specifier
  to Decimal __format__ method.
........
  r70443 | bob.ippolito | 2009-03-17 23:19:00 +0000 (Di, 17 Mär 2009) | 1 line

  merge json library with simplejson 2.0.9 (issue 4136)
........
  r70444 | mark.dickinson | 2009-03-18 08:22:51 +0000 (Mi, 18 Mär 2009) | 3 lines

  Fix bug in _insert_thousands_sep: too much zero padding could be
  added for 'n' formats with non-repeating thousands-separator.
........
  r70454 | mark.dickinson | 2009-03-18 16:07:26 +0000 (Mi, 18 Mär 2009) | 9 lines

  Issue 4474: On platforms with sizeof(wchar_t) == 4 and
  sizeof(Py_UNICODE) == 2, PyUnicode_FromWideChar now converts
  each character outside the BMP to the appropriate surrogate pair.

  Thanks Victor Stinner for the patch.

  (backport of r70452 from py3k to trunk)
........
  r70466 | raymond.hettinger | 2009-03-18 22:13:20 +0000 (Mi, 18 Mär 2009) | 1 line

  Use mixin methods where possible. (2.7 only -- these don't all exist in 3.0)
........
  r70468 | benjamin.peterson | 2009-03-19 03:04:31 +0000 (Do, 19 Mär 2009) | 1 line

  close files after comparing them
........
  r70470 | raymond.hettinger | 2009-03-19 15:21:10 +0000 (Do, 19 Mär 2009) | 6 lines

  Improve implementation with better underlying data structure
  for O(1) deletions.  Big-Oh performance now the same as regular
  dictionaries.  Uses a doubly-linked list instead of a list/seq
  to track insertion order.
........
  r70471 | raymond.hettinger | 2009-03-19 19:19:03 +0000 (Do, 19 Mär 2009) | 3 lines

  Issue 5381:  Add object_pairs_hook to the json module.
........
  r70472 | raymond.hettinger | 2009-03-19 19:24:43 +0000 (Do, 19 Mär 2009) | 1 line

  Silence a compiler warning.
........
  r70473 | raymond.hettinger | 2009-03-19 19:59:58 +0000 (Do, 19 Mär 2009) | 6 lines

  * Add clearer comment to initialization code.
  * Add optional argument to popitem() -- modeled
    after Anthon van der Neut's C version.
  * Fix method markup in docs.
........
  r70475 | raymond.hettinger | 2009-03-19 23:12:41 +0000 (Do, 19 Mär 2009) | 6 lines

  * Add implementation notes.
  * Re-order methods so that those touching the underlying data
    structure come first and the derived methods come last.
........
  r70477 | raymond.hettinger | 2009-03-19 23:22:25 +0000 (Do, 19 Mär 2009) | 1 line

  Fix typo
........
  r70479 | mark.dickinson | 2009-03-20 15:51:55 +0000 (Fr, 20 Mär 2009) | 3 lines

  Issue #4258:  Use 30-bit digits for Python longs, on 64-bit platforms.
  Backport of r70459.
........
  r70485 | raymond.hettinger | 2009-03-20 18:25:49 +0000 (Fr, 20 Mär 2009) | 1 line

  Add MutableSet example.
........
  r70489 | mark.dickinson | 2009-03-20 23:16:14 +0000 (Fr, 20 Mär 2009) | 4 lines

  Rewrite Py_ARITHMETIC_RIGHT_SHIFT so that it's valid for all signed
  integer types T, not just those for which "unsigned T" is legal.
........
  r70533 | raymond.hettinger | 2009-03-23 00:08:09 +0000 (Mo, 23 Mär 2009) | 6 lines

  Add more comments.  Improve variable names.
  Make links clearer by using a Link object
  instead of a list.  Use proxy links to avoid
  circular references.
........
  r70538 | raymond.hettinger | 2009-03-23 04:42:18 +0000 (Mo, 23 Mär 2009) | 1 line

  Move initialization of root link to __init__.
........
  r70542 | mark.dickinson | 2009-03-23 18:25:13 +0000 (Mo, 23 Mär 2009) | 14 lines

  Issue #5512: speed up the long division algorithm for Python longs.
  The basic algorithm remains the same; the most significant speedups
  come from the following three changes:

    (1) normalize by shifting instead of multiplying and dividing
    (2) the old algorithm usually did an unnecessary extra iteration of
        the outer loop; remove this.  As a special case, this means that
        long divisions with a single-digit result run twice as fast as
        before.
    (3) make inner loop much tighter.

  Various benchmarks show speedups of between 50% and 150% for long
  integer divisions and modulo operations.
........
  r70544 | raymond.hettinger | 2009-03-23 18:26:59 +0000 (Mo, 23 Mär 2009) | 1 line

  Make imported name private and wrap long-line.
........
  r70546 | antoine.pitrou | 2009-03-23 18:41:45 +0000 (Mo, 23 Mär 2009) | 9 lines

  Issue #4688: Add a heuristic so that tuples and dicts containing only
  untrackable objects are not tracked by the garbage collector. This can
  reduce the size of collections and therefore the garbage collection overhead
  on long-running programs, depending on their particular use of datatypes.

  (trivia: this makes the "binary_trees" benchmark from the Computer Language
  Shootout 40% faster)
........
  r70550 | antoine.pitrou | 2009-03-23 19:17:00 +0000 (Mo, 23 Mär 2009) | 3 lines

  The tracking statistics were actually too pessimistic
........
  r70552 | benjamin.peterson | 2009-03-23 20:47:59 +0000 (Mo, 23 Mär 2009) | 1 line

  fix very old names for exception terms #5543
........
  r70553 | benjamin.peterson | 2009-03-23 21:23:30 +0000 (Mo, 23 Mär 2009) | 1 line

  revert r70552; wrong fix
........
  r70554 | benjamin.peterson | 2009-03-23 21:25:15 +0000 (Mo, 23 Mär 2009) | 1 line

  complain when there's no last exception
........
  r70555 | benjamin.peterson | 2009-03-23 21:50:21 +0000 (Mo, 23 Mär 2009) | 4 lines

  implement test skipping and expected failures

  patch by myself #1034053
........
  r70558 | benjamin.peterson | 2009-03-23 22:29:45 +0000 (Mo, 23 Mär 2009) | 4 lines

  comply with the evilJavaNamingScheme for attribute names

  It seems my love of PEP 8 overrode the need for consistentcy
........
  r70561 | benjamin.peterson | 2009-03-23 23:10:14 +0000 (Mo, 23 Mär 2009) | 1 line

  refactor unittest docs
........
  r70562 | benjamin.peterson | 2009-03-23 23:13:36 +0000 (Mo, 23 Mär 2009) | 1 line

  forgot to document that setUp can be skipped (silly me...)
........
  r70563 | benjamin.peterson | 2009-03-23 23:19:03 +0000 (Mo, 23 Mär 2009) | 1 line

  update from CVS
........
  r70564 | raymond.hettinger | 2009-03-24 00:17:11 +0000 (Di, 24 Mär 2009) | 1 line

  Add links to related resources.
........
  r70568 | benjamin.peterson | 2009-03-24 00:35:20 +0000 (Di, 24 Mär 2009) | 1 line

  some cleanup and modernization
........
  r70569 | benjamin.peterson | 2009-03-24 00:36:16 +0000 (Di, 24 Mär 2009) | 1 line

  remove special metadata
........
  r70570 | benjamin.peterson | 2009-03-24 00:37:12 +0000 (Di, 24 Mär 2009) | 1 line

  update docstring
........
  r70571 | benjamin.peterson | 2009-03-24 00:39:24 +0000 (Di, 24 Mär 2009) | 1 line

  add new skipping things to __all__
........
  r70574 | benjamin.peterson | 2009-03-24 01:11:37 +0000 (Di, 24 Mär 2009) | 1 line

  fix typo
........
  r70578 | benjamin.peterson | 2009-03-24 03:24:56 +0000 (Di, 24 Mär 2009) | 1 line

  this is better written using assertRaises
........
  r70588 | benjamin.peterson | 2009-03-24 22:56:32 +0000 (Di, 24 Mär 2009) | 1 line

  fix newline issue in test summary
........
  r70589 | benjamin.peterson | 2009-03-24 23:07:07 +0000 (Di, 24 Mär 2009) | 1 line

  another style nit
........
  r70598 | benjamin.peterson | 2009-03-25 21:24:04 +0000 (Mi, 25 Mär 2009) | 1 line

  add shorthands for expected failures and unexpected success
........
  r70599 | benjamin.peterson | 2009-03-25 21:42:51 +0000 (Mi, 25 Mär 2009) | 1 line

  this can be slightly less ugly
........
  r70601 | raymond.hettinger | 2009-03-25 22:41:32 +0000 (Mi, 25 Mär 2009) | 1 line

  Separate initialization from clearing.
........
  r70605 | benjamin.peterson | 2009-03-26 16:32:23 +0000 (Do, 26 Mär 2009) | 1 line

  remove uneeded function
........
  r70611 | benjamin.peterson | 2009-03-26 18:35:37 +0000 (Do, 26 Mär 2009) | 1 line

  add much better tests for python version information parsing
........
  r70612 | benjamin.peterson | 2009-03-26 18:55:48 +0000 (Do, 26 Mär 2009) | 1 line

  more and more implementations now support sys.subversion
........
  r70613 | benjamin.peterson | 2009-03-26 18:58:30 +0000 (Do, 26 Mär 2009) | 1 line

  roll old test in with new one
........
  r70614 | benjamin.peterson | 2009-03-26 19:09:21 +0000 (Do, 26 Mär 2009) | 1 line

  add support for PyPy
........
  r70615 | benjamin.peterson | 2009-03-26 19:58:18 +0000 (Do, 26 Mär 2009) | 5 lines

  add some useful utilities for skipping tests with unittest's new skipping ability

  most significantly apply a modified portion of the patch from #4242 with
  patches for skipping implementation details
........
  r70616 | benjamin.peterson | 2009-03-26 20:05:50 +0000 (Do, 26 Mär 2009) | 1 line

  rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
  r70617 | benjamin.peterson | 2009-03-26 20:17:27 +0000 (Do, 26 Mär 2009) | 1 line

  apply the second part of #4242's patch; classify all the implementation details in test_descr
........
  r70618 | benjamin.peterson | 2009-03-26 20:48:25 +0000 (Do, 26 Mär 2009) | 1 line

  remove test_support.TestSkipped and just use unittest.SkipTest
........
  r70619 | benjamin.peterson | 2009-03-26 20:49:40 +0000 (Do, 26 Mär 2009) | 1 line

  fix naming
........
  r70620 | benjamin.peterson | 2009-03-26 21:10:30 +0000 (Do, 26 Mär 2009) | 1 line

  fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
........
  r70621 | benjamin.peterson | 2009-03-26 21:11:16 +0000 (Do, 26 Mär 2009) | 1 line

  must pass argument to get expected behavior ;)
........
  r70623 | benjamin.peterson | 2009-03-26 21:30:10 +0000 (Do, 26 Mär 2009) | 1 line

  add missing import
........
  r70624 | benjamin.peterson | 2009-03-26 21:30:54 +0000 (Do, 26 Mär 2009) | 1 line

  ** is required here
........
  r70626 | benjamin.peterson | 2009-03-26 21:40:29 +0000 (Do, 26 Mär 2009) | 1 line

  update email tests to use SkipTest
........
  r70627 | benjamin.peterson | 2009-03-26 21:44:43 +0000 (Do, 26 Mär 2009) | 1 line

  fix another name
........
  r70641 | guilherme.polo | 2009-03-27 21:43:08 +0000 (Fr, 27 Mär 2009) | 3 lines

  Adjusted _tkinter to compile without warnings when WITH_THREAD is not
  defined (part of issue #5035)
........
  r70647 | antoine.pitrou | 2009-03-28 19:10:13 +0000 (Sa, 28 Mär 2009) | 3 lines

  Publicize the GC untracking optimization
........
  r70651 | guilherme.polo | 2009-03-28 19:17:16 +0000 (Sa, 28 Mär 2009) | 1 line

  Typo fix
........
  r70652 | antoine.pitrou | 2009-03-28 19:17:54 +0000 (Sa, 28 Mär 2009) | 3 lines

  Fix a typo and be more specific
........
  r70668 | benjamin.peterson | 2009-03-29 03:16:57 +0000 (So, 29 Mär 2009) | 1 line

  a more realistic example
........
  r70669 | benjamin.peterson | 2009-03-29 03:31:40 +0000 (So, 29 Mär 2009) | 1 line

  stop the versionchanged directive from hiding the docs
........
  r70671 | benjamin.peterson | 2009-03-29 03:39:58 +0000 (So, 29 Mär 2009) | 1 line

  fix consistency
........
  r70672 | collin.winter | 2009-03-29 03:44:19 +0000 (So, 29 Mär 2009) | 4 lines

  Add the ability to control the random seed used by regrtest.py -r.

  This adds a --randseed option, and makes regrtest.py -r indicate what random seed it's using so that that value can later be fed back to --randseed. This option is useful for tracking down test order-related issues found by make buildbottest, for example.
........
  r70674 | guilherme.polo | 2009-03-29 10:19:05 +0000 (So, 29 Mär 2009) | 1 line

  Typo fix.
........
  r70691 | raymond.hettinger | 2009-03-29 18:51:11 +0000 (So, 29 Mär 2009) | 1 line

  Make life easier for non-CPython implementations.
........
  r70698 | benjamin.peterson | 2009-03-29 21:31:05 +0000 (So, 29 Mär 2009) | 1 line

  thanks to guido's bytecode verifier, this is fixed
........
  r70700 | benjamin.peterson | 2009-03-29 21:50:14 +0000 (So, 29 Mär 2009) | 1 line

  use the awesome new status iterator
........
  r70701 | benjamin.peterson | 2009-03-29 22:27:26 +0000 (So, 29 Mär 2009) | 1 line

  add missing import
........
  r70702 | bob.ippolito | 2009-03-29 22:33:58 +0000 (So, 29 Mär 2009) | 1 line

  Issue 5381: fix regression in pure python code path, Issue 5584: fix a decoder bug for unicode float literals outside of a container
........
  r70703 | benjamin.peterson | 2009-03-30 02:14:21 +0000 (Mo, 30 Mär 2009) | 1 line

  fix import
........
  r70706 | benjamin.peterson | 2009-03-30 14:42:23 +0000 (Mo, 30 Mär 2009) | 1 line

  add missing import
........
  r70711 | r.david.murray | 2009-03-30 15:14:01 +0000 (Mo, 30 Mär 2009) | 2 lines

  Convert import try/except to use test_support.import_module().
........
  r70712 | benjamin.peterson | 2009-03-30 15:15:38 +0000 (Mo, 30 Mär 2009) | 1 line

  don't rely on the order dict repr #5605
........
  r70716 | r.david.murray | 2009-03-30 15:30:34 +0000 (Mo, 30 Mär 2009) | 2 lines

  Revert incorrect change.
........
  r70734 | r.david.murray | 2009-03-30 19:04:00 +0000 (Mo, 30 Mär 2009) | 7 lines

  Add import_function method to test.test_support, and modify a number of
  tests that expect to be skipped if imports fail or functions don't
  exist to use import_function and import_module.  The ultimate goal is
  to change regrtest to not skip automatically on ImportError.  Checking
  in now to make sure the buldbots don't show any errors on platforms
  I can't direct test on.
........
  r70735 | ronald.oussoren | 2009-03-30 19:22:56 +0000 (Mo, 30 Mär 2009) | 3 lines

  Remove usage of the deprecated '-cString' and '+stringWithCString:' API's
  in PythonLauncher, replacing them with the correct counterparts.
........
  r70747 | r.david.murray | 2009-03-30 20:04:06 +0000 (Mo, 30 Mär 2009) | 3 lines

  Remove references to test_socket_ssl which was deleted in trunk
  in r64392 and py3k in r59038.
........
  r70757 | senthil.kumaran | 2009-03-30 21:51:50 +0000 (Mo, 30 Mär 2009) | 3 lines

  Fix for bugs: Issue4675 and Issue4962.
........
  r70770 | andrew.kuchling | 2009-03-30 22:30:20 +0000 (Mo, 30 Mär 2009) | 1 line

  Add several items and placeholders
........
  r70771 | andrew.kuchling | 2009-03-30 22:31:11 +0000 (Mo, 30 Mär 2009) | 1 line

  Many edits
........
  r70772 | barry.warsaw | 2009-03-30 22:42:17 +0000 (Mo, 30 Mär 2009) | 5 lines

  A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht),
  though with some changes by me.  This patch should not be back ported or
  forward ported.  It's a bit too risky for 2.6 and 3.x does things fairly
  differently.
........
  r70775 | r.david.murray | 2009-03-30 23:05:48 +0000 (Mo, 30 Mär 2009) | 4 lines

  Change more tests to use import_module for the modules that
  should cause tests to be skipped.  Also rename import_function
  to the more descriptive get_attribute and add a docstring.
........
  r70777 | andrew.kuchling | 2009-03-30 23:09:46 +0000 (Mo, 30 Mär 2009) | 1 line

  Add more items
........
  r70778 | ronald.oussoren | 2009-03-30 23:10:35 +0000 (Mo, 30 Mär 2009) | 4 lines

  Fix issue #4865: add /Library/Python/2.7/site-packages to
  sys.path on OSX, to make it easier to share (some) installed
  packages between the system install and a user install.
........
  r70779 | r.david.murray | 2009-03-30 23:10:37 +0000 (Mo, 30 Mär 2009) | 3 lines

  Actually suppress warnings in test_at_least_import_untested_modules
  inside the catch_warnings context manager.
........
  r70788 | andrew.kuchling | 2009-03-31 01:21:01 +0000 (Di, 31 Mär 2009) | 1 line

  Add various items
........
  r70807 | jeremy.hylton | 2009-03-31 13:31:00 +0000 (Di, 31 Mär 2009) | 2 lines

  Update quicktest to match Python 3 branch
........
  r70821 | jeremy.hylton | 2009-03-31 15:04:15 +0000 (Di, 31 Mär 2009) | 2 lines

  Add check for PyDict_Update() error.
........
  r70837 | gregory.p.smith | 2009-03-31 16:54:10 +0000 (Di, 31 Mär 2009) | 9 lines

  The unittest.TestCase.assertEqual() now displays the differences in lists,
  tuples, dicts and sets on failure.

  Many new handy type and comparison specific assert* methods have been added
  that fail with error messages actually useful for debugging.  Contributed in
  by Google and completed with help from mfoord and GvR at PyCon 2009 sprints.

  Discussion lives in http://bugs.python.org/issue2578.
........
  r70844 | raymond.hettinger | 2009-03-31 17:47:06 +0000 (Di, 31 Mär 2009) | 1 line

  Per the language summit, the optional fastpath imports should use from-import-star.
........
  r70856 | r.david.murray | 2009-03-31 18:32:17 +0000 (Di, 31 Mär 2009) | 7 lines

  A few more test skips via import_module, and change import_module to
  return the error message produced by importlib, so that if an import
  in the package whose import is being wrapped is what failed the skip
  message will contain the name of that module instead of the name of the
  wrapped module.  Also fixed formatting of some previous comments.
........
  r70864 | gregory.p.smith | 2009-03-31 19:03:28 +0000 (Di, 31 Mär 2009) | 10 lines

  Rename the actual method definitions to the official assertFoo names.

  Adds unittests to make sure the old fail* names continue to work now
  and adds a comment that they are pending deprecation.

  Also adds a test to confirm that the plural Equals method variants
  continue to exist even though we're unlikely to deprecate those.

  http://bugs.python.org/issue2578
........
  r70869 | georg.brandl | 2009-03-31 19:14:42 +0000 (Di, 31 Mär 2009) | 1 line

  Fix-up unwanted change.
........
  r70872 | r.david.murray | 2009-03-31 19:31:17 +0000 (Di, 31 Mär 2009) | 3 lines

  Delete out-of-date and little-known README from the test
  directory by consensus of devs at pycon sprint.
........
  r70874 | r.david.murray | 2009-03-31 19:33:15 +0000 (Di, 31 Mär 2009) | 5 lines

  Improve test_support.import_module docstring, remove
  deprecated flag from get_attribute since it isn't likely
  to do anything useful.
........
  r70876 | r.david.murray | 2009-03-31 19:49:15 +0000 (Di, 31 Mär 2009) | 4 lines

  Remove the regrtest check that turns any ImportError into a skipped test.
  Hopefully all modules whose imports legitimately result in a skipped
  test have been properly wrapped by the previous commits.
........
  r70877 | r.david.murray | 2009-03-31 19:57:24 +0000 (Di, 31 Mär 2009) | 2 lines

  Add NEWS entry for regrtest change.
........
  r70878 | gregory.p.smith | 2009-03-31 19:59:14 +0000 (Di, 31 Mär 2009) | 3 lines

  Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.
  Document the deprecation.
........
  r70883 | georg.brandl | 2009-03-31 20:41:08 +0000 (Di, 31 Mär 2009) | 1 line

  #1674032: return value of flag from Event.wait(). OKed by Guido.
........
  r70885 | tarek.ziade | 2009-03-31 20:48:31 +0000 (Di, 31 Mär 2009) | 1 line

  using log.warn for sys.stderr
........
  r70886 | tarek.ziade | 2009-03-31 20:50:59 +0000 (Di, 31 Mär 2009) | 1 line

  added tests for the clean command
........
  r70888 | tarek.ziade | 2009-03-31 20:53:13 +0000 (Di, 31 Mär 2009) | 1 line

  more tests for the register command
........
  r70889 | tarek.ziade | 2009-03-31 20:53:55 +0000 (Di, 31 Mär 2009) | 1 line

  more tests for the upload command
........
  r70890 | tarek.ziade | 2009-03-31 20:54:38 +0000 (Di, 31 Mär 2009) | 1 line

  added test to the install_data command
........
  r70891 | tarek.ziade | 2009-03-31 20:55:21 +0000 (Di, 31 Mär 2009) | 1 line

  added tests to the install_headers command
........
  r70892 | tarek.ziade | 2009-03-31 20:56:11 +0000 (Di, 31 Mär 2009) | 1 line

  making sdist and config test silents
........
  r70894 | benjamin.peterson | 2009-03-31 21:06:30 +0000 (Di, 31 Mär 2009) | 1 line

  take the usual lock precautions around _active_limbo_lock
........
  r70901 | georg.brandl | 2009-03-31 21:40:24 +0000 (Di, 31 Mär 2009) | 2 lines

  Remove warning about pending Win9x support removal.
........
  r70903 | georg.brandl | 2009-03-31 21:45:18 +0000 (Di, 31 Mär 2009) | 1 line

  #1676135: remove trailing slashes from --prefix argument.
........
  r70910 | tarek.ziade | 2009-03-31 22:27:23 +0000 (Di, 31 Mär 2009) | 1 line

  #5583 Added optional Extensions in Distutils
........
  r70918 | raymond.hettinger | 2009-03-31 22:43:03 +0000 (Di, 31 Mär 2009) | 1 line

  Improve examples for collections.deque()
........
  r70920 | tarek.ziade | 2009-03-31 22:44:10 +0000 (Di, 31 Mär 2009) | 1 line

  catching msvc9compiler error as well
........
  r70922 | tarek.ziade | 2009-03-31 22:47:01 +0000 (Di, 31 Mär 2009) | 1 line

  fixed the test for win32 CompileError
........
  r70930 | r.david.murray | 2009-03-31 23:45:39 +0000 (Di, 31 Mär 2009) | 3 lines

  Fix Windows test skip error revealed by buildbot.  Also a comment spelling
  correction in a previously fixed test.
........
  r70931 | jack.diederich | 2009-03-31 23:46:48 +0000 (Di, 31 Mär 2009) | 1 line

  #5228: add pickle support to functools.partial
........
  r70936 | r.david.murray | 2009-04-01 03:21:43 +0000 (Mi, 01 Apr 2009) | 4 lines

  Fix issue 2522.  locale.format now checks that it is passed
  exactly one pattern, which avoids mysterious errors where it
  had seemed to fail to do localization.
........
  r70939 | jesse.noller | 2009-04-01 03:45:50 +0000 (Mi, 01 Apr 2009) | 1 line

  Fix multiprocessing.event to match the new threading.Event API
........
  r70951 | georg.brandl | 2009-04-01 14:02:27 +0000 (Mi, 01 Apr 2009) | 1 line

  Add Maksim, who worked on several issues at the sprint.
........
  r70956 | brett.cannon | 2009-04-01 16:00:34 +0000 (Mi, 01 Apr 2009) | 5 lines

  The cgitb module had imports in its functions. This can cause deadlock with the
  import lock if called from within a thread that was triggered by an import.

  Partially fixes issue #1665206.
........
  r70958 | kristjan.jonsson | 2009-04-01 16:08:34 +0000 (Mi, 01 Apr 2009) | 3 lines

  http://bugs.python.org/issue5623
  Dynamically discoverd the size of the ioinfo struct used by the crt for its file descriptors.  This should work across all flavors of the CRT.  Thanks to Amaury Forgeot d'Arc
  Needs porting to 3.1
........
  r70965 | brett.cannon | 2009-04-01 18:03:59 +0000 (Mi, 01 Apr 2009) | 5 lines

  _warnings was importing itself to get an attribute. That's bad if warnings gets
  called in a thread that was spawned by an import itself.

  Last part to close #1665206.
........
  r70968 | michael.foord | 2009-04-01 18:25:38 +0000 (Mi, 01 Apr 2009) | 1 line

  Adding Wing project file
........
  r70969 | raymond.hettinger | 2009-04-01 18:50:56 +0000 (Mi, 01 Apr 2009) | 1 line

  Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.
........
  r70975 | brett.cannon | 2009-04-01 19:57:10 +0000 (Mi, 01 Apr 2009) | 4 lines

  test_logging was blindly clearing the warnings filter. This caused
  PendingDeprecationWarnings to be spewed all over by unittest.failIf*(). Fix
  moves over to using warnings.catch_warning to protect the warnings filter.
........
  r70979 | brett.cannon | 2009-04-01 20:25:48 +0000 (Mi, 01 Apr 2009) | 3 lines

  test_warnings ironically had a single test that was not protecting the warnings
  filter and was resetting it.
........
  r70980 | jack.diederich | 2009-04-01 20:26:13 +0000 (Mi, 01 Apr 2009) | 3 lines

  bounds check arguments to mmap.move().  All of them.  Really.
  fixes crasher on OS X 10.5
........
  r70981 | senthil.kumaran | 2009-04-01 20:26:33 +0000 (Mi, 01 Apr 2009) | 3 lines

  Fix for issue5040. Adding test for Content-Length
........
  r70986 | raymond.hettinger | 2009-04-01 20:50:58 +0000 (Mi, 01 Apr 2009) | 1 line

  Add link to an alternative generator with a long-period.
........
  r70992 | georg.brandl | 2009-04-01 21:00:55 +0000 (Mi, 01 Apr 2009) | 1 line

  #4572: add SEEK_* values as constants in io.py.
........
  r70993 | georg.brandl | 2009-04-01 21:05:44 +0000 (Mi, 01 Apr 2009) | 1 line

  Add NEWS item.
........
  r70994 | georg.brandl | 2009-04-01 21:06:30 +0000 (Mi, 01 Apr 2009) | 1 line

  Revert accidental checkin.
........
  r70995 | benjamin.peterson | 2009-04-01 21:12:54 +0000 (Mi, 01 Apr 2009) | 1 line

  add seek constants to __all__
........
  r70997 | r.david.murray | 2009-04-01 21:26:18 +0000 (Mi, 01 Apr 2009) | 3 lines

  Add tests checking the CSV module's ability to handle
  embedded newlines in quoted field values.
........
2010-05-18 23:55:25 +00:00
Georg Brandl 6a05e8a606 Merged revisions 70697 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70697 | benjamin.peterson | 2009-03-29 21:22:35 +0000 (So, 29 Mär 2009) | 1 line

  this has been fixed since 2.6 (I love removing these)
........
2010-05-18 23:47:48 +00:00
Georg Brandl 5473410ee7 Blocked revisions 66721-66722,66744-66745,66752,66756,66763-66765,66768,66791-66792,66822-66823,66832,66836,66852,66857,66868,66878,66894,66902,66912,66989,66994,67013,67015,67049,67065,67171,67226,67234,67287,67342,67348-67349,67353,67396,67407,67411,67442,67511,67521,67536-67537,67543,67572,67584,67587,67601,67614,67628,67818,67822,67850,67857,67902,67946,67954,67976,67978-67980,67985,68089,68092,68119,68150,68153,68156,68158,68163,68167,68176,68203,68208-68209,68231,68238,68240,68243,68296,68299,68302,68304,68311,68314,68319,68381,68395,68415,68425,68432,68455,68458-68462,68476,68484-68485,68487,68496,68498,68532,68542,68544-68546,68559-68560,68562,68565-68569,68571,68592,68596-68597,68603-68604,68607,68618,68648,68665,68667,68676,68722,68739,68763-68764,68766,68772-68773,68785,68789,68792-68793,68803,68807,68826,68829,68831,68839-68840,68843,68845,68850,68853,68881,68884,68892,68925,68927,68929,68933,68941-68943,68953,68964,68985,68998,69001,69003,69010,69012,69014,69018,69023,69039,69050,69053,69060-69063,69070,69074,69080,69085,69087,69112-69113,69129-69130,69134,69139,69143,69146,69149,69154,69156,69158,69169,69195,69211-69212,69227,69237,69242,69252-69253,69257,69260,69262,69268,69285,69302-69303,69305,69315,69322,69324,69330-69332,69342,69356,69360,69364-69366,69373-69374,69377,69385,69389,69394,69404,69410,69413,69415,69419-69420,69425,69443,69447,69459-69460,69466-69467,69470,69473-69474,69480-69481,69495,69498,69516,69521-69522,69525,69528,69530,69561,69566,69578-69580,69582-69583,69591,69594,69602,69604,69609-69610,69617,69619,69634,69639,69666,69685,69688-69690,69692-69693,69700,69709-69710,69715-69716,69724,69739,69743,69748,69751,69757,69761,69765,69770,69772,69777,69795,69811,69837-69838,69855,69861,69870-69871,69874,69878,69881,69889,69901-69902,69907-69908,69937,69946-69947,69952-69953,69955,69959,69974,69976,69981,69983,69994,70000 via svnmerge
........
  r66721 | barry.warsaw | 2008-10-02 03:33:51 +0000 (Do, 02 Okt 2008) | 1 line

  Bump to 2.7a0
........
  r66722 | martin.v.loewis | 2008-10-02 11:44:17 +0000 (Do, 02 Okt 2008) | 1 line

  Use CRT 9 policy files.
........
  r66744 | benjamin.peterson | 2008-10-02 19:00:31 +0000 (Do, 02 Okt 2008) | 1 line

  we're in 2.7 now
........
  r66745 | georg.brandl | 2008-10-02 19:09:47 +0000 (Do, 02 Okt 2008) | 2 lines

  Forward-port r66736.
........
  r66752 | martin.v.loewis | 2008-10-02 20:04:47 +0000 (Do, 02 Okt 2008) | 2 lines

  Add UUID for 2.7.
........
  r66756 | benjamin.peterson | 2008-10-02 20:46:58 +0000 (Do, 02 Okt 2008) | 1 line

  update pydoc topics
........
  r66763 | neal.norwitz | 2008-10-03 04:13:08 +0000 (Fr, 03 Okt 2008) | 1 line

  Update the version to 2.7.  Hopefully this fixes the test_distutils failure
........
  r66764 | martin.v.loewis | 2008-10-03 08:59:41 +0000 (Fr, 03 Okt 2008) | 2 lines

  Bump version to 2.7. Regenerate.
........
  r66765 | martin.v.loewis | 2008-10-03 10:59:55 +0000 (Fr, 03 Okt 2008) | 1 line

  Update version number to 2.7.
........
  r66768 | hirokazu.yamamoto | 2008-10-03 16:07:28 +0000 (Fr, 03 Okt 2008) | 1 line

  Follows to python's version change (VC6)
........
  r66791 | andrew.kuchling | 2008-10-04 16:52:31 +0000 (Sa, 04 Okt 2008) | 1 line

  Add What's New for 2.7
........
  r66792 | benjamin.peterson | 2008-10-04 17:10:14 +0000 (Sa, 04 Okt 2008) | 1 line

  silence Sphinx warning
........
  r66822 | skip.montanaro | 2008-10-07 01:55:20 +0000 (Di, 07 Okt 2008) | 2 lines

  Simplify individual tests by defining setUp and tearDown methods.
........
  r66823 | skip.montanaro | 2008-10-07 02:02:00 +0000 (Di, 07 Okt 2008) | 2 lines

  Pay attention to -R entries in LDFLAGS.
........
  r66832 | skip.montanaro | 2008-10-07 15:03:40 +0000 (Di, 07 Okt 2008) | 1 line

  save/restore stdout/stderr instead of relying on __*__ versions
........
  r66836 | amaury.forgeotdarc | 2008-10-07 20:32:10 +0000 (Di, 07 Okt 2008) | 5 lines

  #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key.
  Now it correctly refers to the initial otherset.

  Reviewed by Raymond. Will backport to 2.6.
........
  r66852 | andrew.kuchling | 2008-10-08 13:21:27 +0000 (Mi, 08 Okt 2008) | 1 line

  Note how bytes alias is expected to be used
........
  r66857 | georg.brandl | 2008-10-08 18:57:13 +0000 (Mi, 08 Okt 2008) | 2 lines

  Make all whatsnew docs accessible.
........
  r66868 | matthias.klose | 2008-10-10 07:24:20 +0000 (Fr, 10 Okt 2008) | 2 lines

  - Makefile.pre.in(PROFILE_TASK): search files in srcdir
........
  r66878 | benjamin.peterson | 2008-10-11 17:25:36 +0000 (Sa, 11 Okt 2008) | 4 lines

  give poplib a real test suite

  #4088 from Giampaolo Rodola'x
........
  r66894 | benjamin.peterson | 2008-10-14 22:37:18 +0000 (Di, 14 Okt 2008) | 1 line

  remove set compat cruft
........
  r66902 | skip.montanaro | 2008-10-15 11:49:10 +0000 (Mi, 15 Okt 2008) | 1 line

  easter egg
........
  r66912 | hirokazu.yamamoto | 2008-10-16 06:25:25 +0000 (Do, 16 Okt 2008) | 2 lines

  removed unused _PyUnicode_FromFileSystemEncodedObject.
  made win32_chdir, win32_wchdir static.
........
  r66989 | matthias.klose | 2008-10-21 09:12:25 +0000 (Di, 21 Okt 2008) | 2 lines

  - install versioned manpage
........
  r66994 | amaury.forgeotdarc | 2008-10-21 22:01:38 +0000 (Di, 21 Okt 2008) | 6 lines

  #4157 move two test functions out of platform.py.

  Turn them into unit tests, and correct an obvious typo:
      (("a", "b") ("c", "d") ("e", "f"))
  compiles even with the missing commas, but does not execute very well...
........
  r67013 | benjamin.peterson | 2008-10-25 02:53:28 +0000 (Sa, 25 Okt 2008) | 1 line

  give a py3k warning when 'nonlocal' is used as a variable name
........
  r67015 | georg.brandl | 2008-10-25 07:00:52 +0000 (Sa, 25 Okt 2008) | 2 lines

  Typo fix.
........
  r67049 | amaury.forgeotdarc | 2008-10-30 21:18:34 +0000 (Do, 30 Okt 2008) | 8 lines

  Issue #4176: Pickle would crash the interpreter when a __reduce__ function
  does not return an iterator for the 4th and 5th items.
  (sequence-like and mapping-like state)

  A list is not an iterator...

  Will backport to 2.6 and 2.5.
........
  r67065 | benjamin.peterson | 2008-10-30 23:59:18 +0000 (Do, 30 Okt 2008) | 1 line

  move unprefixed error into .c file
........
  r67171 | benjamin.peterson | 2008-11-08 18:38:54 +0000 (Sa, 08 Nov 2008) | 4 lines

  check for assignment to __debug__ during AST generation

  Also, give assignment to None a better error message
........
  r67226 | brett.cannon | 2008-11-15 22:40:44 +0000 (Sa, 15 Nov 2008) | 4 lines

  The docs for httplib.HTTPConnection.putheader() have claimed for quite a while
  that their could be an arbitrary number of values passed in. Turns out the code
  did not match that. The code now matches the docs.
........
  r67234 | benjamin.peterson | 2008-11-16 17:54:55 +0000 (So, 16 Nov 2008) | 1 line

  run autoconf
........
  r67287 | josiah.carlson | 2008-11-19 18:26:12 +0000 (Mi, 19 Nov 2008) | 2 lines

  Fix for issue 4332 in trunk.
........
  r67342 | amaury.forgeotdarc | 2008-11-22 19:39:38 +0000 (Sa, 22 Nov 2008) | 3 lines

  yuvconvert.c is a part of the "sv" module, an old IRIX thing
  and certainly not useful for any Windows build.
........
  r67348 | benjamin.peterson | 2008-11-23 02:09:41 +0000 (So, 23 Nov 2008) | 1 line

  raise a better error
........
  r67349 | matthias.klose | 2008-11-23 13:37:03 +0000 (So, 23 Nov 2008) | 3 lines

   - Modules/Setup.dist: Mention _functools in section "Modules that should
     always be present (non UNIX dependent)"
........
  r67353 | matthias.klose | 2008-11-23 13:54:42 +0000 (So, 23 Nov 2008) | 2 lines

  - Fix typo in last checkin
........
  r67396 | matthias.klose | 2008-11-26 17:32:49 +0000 (Mi, 26 Nov 2008) | 2 lines

  - Modules/Setup.dist: Mention _elementtree and _pickle.
........
  r67407 | matthias.klose | 2008-11-27 07:45:25 +0000 (Do, 27 Nov 2008) | 2 lines

  - Modules/Setup.dist: Update pyexpat
........
  r67411 | matthias.klose | 2008-11-27 10:14:22 +0000 (Do, 27 Nov 2008) | 2 lines

  - Modules/Setup.dist: Update _elementtree, add _bisect, datetime
........
  r67442 | jeremy.hylton | 2008-11-29 01:09:35 +0000 (Sa, 29 Nov 2008) | 18 lines

  Send HTTP headers and message body in a single send() call.

  This change addresses part of issue 4336.

  Change endheaders() to take an optional message_body argument
  that is sent along with the headers.  Change xmlrpclib and
  httplib's other methods to use this new interface.

  It is more efficient to make a single send() call, which should
  get the entire client request into one packet (assuming it is
  smaller than the MTU) and will avoid the long pause for delayed
  ack following timeout.

  Also:
  - Add a comment about the buffer size for makefile().
  - Extract _set_content_length() method and fix whitespace issues there.
........
  r67511 | vinay.sajip | 2008-12-03 23:22:58 +0000 (Mi, 03 Dez 2008) | 1 line

  Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging.
........
  r67521 | christian.heimes | 2008-12-04 14:34:40 +0000 (Do, 04 Dez 2008) | 1 line

  Bumped up 2.6 to 2.7
........
  r67536 | gregory.p.smith | 2008-12-04 20:21:09 +0000 (Do, 04 Dez 2008) | 3 lines

  Adds a subprocess.check_call_output() function to return the output from a
  process on success or raise an exception on error.
........
  r67537 | vinay.sajip | 2008-12-04 20:32:18 +0000 (Do, 04 Dez 2008) | 1 line

  Took Nick Coghlan's advice about importing warnings globally in logging, to avoid the possibility of race conditions: "This could deadlock if a thread spawned as a side effect of importing a module happens to trigger a warning. warnings is pulled into sys.modules as part of the interpreter startup - having a global 'import warnings' shouldn't have any real effect on logging's import time."
........
  r67543 | gregory.p.smith | 2008-12-05 02:27:01 +0000 (Fr, 05 Dez 2008) | 2 lines

  rename the new check_call_output to check_output.  its less ugly.
........
  r67572 | georg.brandl | 2008-12-05 09:23:14 +0000 (Fr, 05 Dez 2008) | 2 lines

  #4458: recognize "-" as an argument, not a malformed option in gnu_getopt().
........
  r67584 | fred.drake | 2008-12-05 15:52:25 +0000 (Fr, 05 Dez 2008) | 2 lines

  bump version number
........
  r67587 | fred.drake | 2008-12-05 16:14:18 +0000 (Fr, 05 Dez 2008) | 2 lines

  be more specific, and parallel to the py3k branch
........
  r67601 | mark.dickinson | 2008-12-05 21:55:28 +0000 (Fr, 05 Dez 2008) | 3 lines

  Issue #4445: save 3 bytes (on average, on a typical machine) per
  string allocation.
........
  r67614 | skip.montanaro | 2008-12-06 17:43:30 +0000 (Sa, 06 Dez 2008) | 2 lines

  issue 4483 - dbm build failures on systems with gdbm_compat lib.
........
  r67628 | skip.montanaro | 2008-12-07 02:16:00 +0000 (So, 07 Dez 2008) | 1 line

  muffed the default case
........
  r67818 | antoine.pitrou | 2008-12-17 00:38:28 +0000 (Mi, 17 Dez 2008) | 3 lines

  Issue #2183: Simplify and optimize bytecode for list comprehensions.
........
  r67822 | mark.dickinson | 2008-12-17 16:14:37 +0000 (Mi, 17 Dez 2008) | 4 lines

  Issue #3439: add bit_length method to int and long.
  Thanks Fredrik Johansson and Victor Stinner for code,
  Raymond Hettinger for review.
........
  r67850 | raymond.hettinger | 2008-12-19 09:06:07 +0000 (Fr, 19 Dez 2008) | 9 lines

  Fix-up and clean-up docs for int.bit_length().

  * Replace dramatic footnote with in-line comment about possible round-off errors in logarithms of large numbers.
  * Add comments to the pure python code equivalent.
  * replace floor() with int() in the mathematical equivalent so the type is correct (should be an int, not a float).
  * add abs() to the mathematical equivalent so that it matches the previous line that it is supposed to be equivalent to.
  * make one combined example with a negative input.
........
  r67857 | mark.dickinson | 2008-12-19 17:46:51 +0000 (Fr, 19 Dez 2008) | 2 lines

  Fix typo in Python equivalent for bit_length.
........
  r67902 | benjamin.peterson | 2008-12-22 20:16:25 +0000 (Mo, 22 Dez 2008) | 1 line

  add py3k warnings to frame.f_exc_*
........
  r67946 | antoine.pitrou | 2008-12-27 15:43:12 +0000 (Sa, 27 Dez 2008) | 4 lines

  Issue #4756: zipfile.is_zipfile() now supports file-like objects.
  Patch by Gabriel Genellina.
........
  r67954 | benjamin.peterson | 2008-12-27 18:24:11 +0000 (Sa, 27 Dez 2008) | 1 line

  #4748 lambda generators shouldn't return values
........
  r67976 | georg.brandl | 2008-12-28 11:54:53 +0000 (So, 28 Dez 2008) | 7 lines

  Backport r67974:

  #4759: allow None as first argument of bytearray.translate(), for consistency with bytes.translate().

  Also fix segfault for bytearray.translate(x, None) -- will backport this part to 3.0 and 2.6.
........
  r67978 | georg.brandl | 2008-12-28 11:58:49 +0000 (So, 28 Dez 2008) | 2 lines

  #4731: clarify message about missing module prerequisites.
........
  r67979 | antoine.pitrou | 2008-12-28 14:09:36 +0000 (So, 28 Dez 2008) | 3 lines

  Issue #4444: Allow assertRaises() to be used as a context handler.
........
  r67980 | antoine.pitrou | 2008-12-28 14:24:29 +0000 (So, 28 Dez 2008) | 1 line

  wrong version number in doc changes committed in r67979
........
  r67985 | antoine.pitrou | 2008-12-28 16:01:11 +0000 (So, 28 Dez 2008) | 4 lines

  Issue #2153: modernize coding style of unittest.py, remove obsolete compatibility stuff.
  Patch by Virgil Dupras.
........
  r68089 | benjamin.peterson | 2008-12-31 03:37:51 +0000 (Mi, 31 Dez 2008) | 1 line

  #4788 qualify some bare except clauses
........
  r68092 | benjamin.peterson | 2008-12-31 04:08:55 +0000 (Mi, 31 Dez 2008) | 1 line

  fix name collision issues
........
  r68119 | georg.brandl | 2009-01-01 12:09:40 +0000 (Do, 01 Jan 2009) | 3 lines

  #4222: document dis.findlabels() and dis.findlinestarts() and
  put them into dis.__all__.
........
  r68150 | ronald.oussoren | 2009-01-02 11:46:05 +0000 (Fr, 02 Jan 2009) | 1 line

  Fix for issue 3433
........
  r68153 | ronald.oussoren | 2009-01-02 12:59:32 +0000 (Fr, 02 Jan 2009) | 10 lines

  Fix for issue3559: No preferences menu in IDLE on OSX

  1) Add a comment to the help file to that points to the
     preferences menu.

  2) An earlier checkin tried to detect Tk >= 8.10.14,
     but did this in the wrong way. The end result of this
     was that the IDLE->Preferences... menu got surpressed
     when using the system version of Tcl/Tk
........
  r68156 | ronald.oussoren | 2009-01-02 14:10:20 +0000 (Fr, 02 Jan 2009) | 1 line

  Fix for issue1594
........
  r68158 | ronald.oussoren | 2009-01-02 14:46:19 +0000 (Fr, 02 Jan 2009) | 2 lines

  Fix for issue 900949
........
  r68163 | ronald.oussoren | 2009-01-02 15:25:36 +0000 (Fr, 02 Jan 2009) | 2 lines

  Fix for issues #841800 and #900506
........
  r68167 | vinay.sajip | 2009-01-02 18:53:04 +0000 (Fr, 02 Jan 2009) | 1 line

  Minor documentation changes relating to NullHandler, the module used for handlers and references to ConfigParser.
........
  r68176 | andrew.kuchling | 2009-01-02 21:00:35 +0000 (Fr, 02 Jan 2009) | 1 line

  Add various items
........
  r68203 | martin.v.loewis | 2009-01-03 17:19:26 +0000 (Sa, 03 Jan 2009) | 2 lines

  Issue #4817: Remove unused function PyOS_GetLastModificationTime.
........
  r68208 | raymond.hettinger | 2009-01-03 19:02:23 +0000 (Sa, 03 Jan 2009) | 1 line

  Issue 4796: Add from_float methods to the decimal module.
........
  r68209 | raymond.hettinger | 2009-01-03 19:08:10 +0000 (Sa, 03 Jan 2009) | 1 line

  Reapply r68191.
........
  r68231 | guilherme.polo | 2009-01-03 21:51:09 +0000 (Sa, 03 Jan 2009) | 4 lines

  The _tkinter module functions "createfilehandler", "deletefilehandler",
  "createtimerhandler", "mainloop", "dooneevent" and "quit" have been
  deprecated for removal in 3.x (part of issue #3638).
........
  r68238 | georg.brandl | 2009-01-03 22:03:11 +0000 (Sa, 03 Jan 2009) | 2 lines

  Manually merge r68095,68186,68187,68188,68190 from 2.6 branch.
........
  r68240 | georg.brandl | 2009-01-03 22:05:22 +0000 (Sa, 03 Jan 2009) | 2 lines

  Manually merge r67868 from 2.6 branch.
........
  r68243 | georg.brandl | 2009-01-03 22:15:42 +0000 (Sa, 03 Jan 2009) | 2 lines

  Add temporary code to fix the automatic doc build failure.
........
  r68296 | mark.dickinson | 2009-01-04 12:29:36 +0000 (So, 04 Jan 2009) | 6 lines

  Add autoconf test to detect x87-style double rounding, as described in
  issue #2937.  This information can be helpful for diagnosing platform-
  specific problems in math and cmath.  The result of the test also
  serves as a fairly reliable indicator of whether the x87 floating-point
  instructions (as opposed to SSE2) are in use on Intel x86/x86_64 systems.
........
  r68299 | mark.dickinson | 2009-01-04 13:57:26 +0000 (So, 04 Jan 2009) | 4 lines

  isinf and isnan are macros, not functions; fix configure script
  to use AC_CHECK_DECLS instead of AC_CHECK_FUNCS for these.
  (See discussion in issue #4506)
........
  r68302 | mark.dickinson | 2009-01-04 16:06:40 +0000 (So, 04 Jan 2009) | 4 lines

  Oops.  Need to check not only that HAVE_DECL_ISINF is defined, but also
  that it's equal to 1.  (If isinf isn't defined, HAVE_DECL_ISINF is
  defined to be 0, rather than being undefined.)
........
  r68304 | mark.dickinson | 2009-01-04 17:02:05 +0000 (So, 04 Jan 2009) | 2 lines

  Fix HAVE_DECL_ISINF/ISNAN test (again).
........
  r68311 | mark.dickinson | 2009-01-04 19:53:00 +0000 (So, 04 Jan 2009) | 2 lines

  Use C99 'isfinite' macro in preference to BSD-derived 'finite' function.
........
  r68314 | mark.dickinson | 2009-01-04 21:10:56 +0000 (So, 04 Jan 2009) | 5 lines

  Fix Decimal.from_float to use valid Python 2.3 syntax, as per
  comments at top of decimal.py.  (But note that the from_float
  method itself with still not be usable before Python 2.7.)
  See issue 4796 for discussion.
........
  r68319 | antoine.pitrou | 2009-01-04 21:29:23 +0000 (So, 04 Jan 2009) | 3 lines

  Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream.
........
  r68381 | martin.v.loewis | 2009-01-07 18:40:40 +0000 (Mi, 07 Jan 2009) | 2 lines

  Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
........
  r68395 | raymond.hettinger | 2009-01-08 06:39:04 +0000 (Do, 08 Jan 2009) | 1 line

  Forward port r68394 for issue 4816.
........
  r68415 | tarek.ziade | 2009-01-08 23:56:31 +0000 (Do, 08 Jan 2009) | 1 line

  fixed #4394 make the storage of the password optional in .pypirc
........
  r68425 | benjamin.peterson | 2009-01-09 02:56:32 +0000 (Fr, 09 Jan 2009) | 1 line

  fix markup
........
  r68432 | benjamin.peterson | 2009-01-09 03:15:00 +0000 (Fr, 09 Jan 2009) | 1 line

  remove temporary code now
........
  r68455 | kristjan.jonsson | 2009-01-09 20:03:27 +0000 (Fr, 09 Jan 2009) | 1 line

  Issue 3582.  Improved thread support and TLS for Windows
........
  r68458 | kristjan.jonsson | 2009-01-09 20:23:16 +0000 (Fr, 09 Jan 2009) | 1 line

  Issue 4336:  HTTPRequest._send_output() now deals with the case of the message body not being a string.  This allows clients to use endheaders(message_body) instead of endheaders() + send(message_body) without making any extra checks.
........
  r68459 | kristjan.jonsson | 2009-01-09 20:27:16 +0000 (Fr, 09 Jan 2009) | 1 line

  Issue 4336:  Let users of HTTPConnection.endheaders() submit a message body to the function if required.
........
  r68460 | kristjan.jonsson | 2009-01-09 20:31:26 +0000 (Fr, 09 Jan 2009) | 1 line

  Issue 4293:  Make Py_AddPendingCall() thread safe
........
  r68461 | kristjan.jonsson | 2009-01-09 21:35:16 +0000 (Fr, 09 Jan 2009) | 2 lines

  Issue 4293:  Make Py_AddPendingCall() thread safe
  Add test cases and documentation
........
  r68462 | antoine.pitrou | 2009-01-09 21:40:55 +0000 (Fr, 09 Jan 2009) | 6 lines

  Issue #4074: Change the criteria for doing a full garbage collection (i.e.
  collecting the oldest generation) so that allocating lots of objects without
  destroying them does not show quadratic performance. Based on a proposal by
  Martin von Löwis at http://mail.python.org/pipermail/python-dev/2008-June/080579.html.
........
  r68476 | kristjan.jonsson | 2009-01-10 12:14:31 +0000 (Sa, 10 Jan 2009) | 1 line

  Issue 4906:  Preserve windows error state across PyThread_get_key_value
........
  r68484 | antoine.pitrou | 2009-01-10 16:13:45 +0000 (Sa, 10 Jan 2009) | 3 lines

  Issue #3860: GzipFile and BZ2File now support the context manager protocol.
........
  r68485 | antoine.pitrou | 2009-01-10 16:15:24 +0000 (Sa, 10 Jan 2009) | 1 line

  Add NEWS entry for r68484.
........
  r68487 | matthias.klose | 2009-01-10 17:00:42 +0000 (Sa, 10 Jan 2009) | 3 lines

  - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on
    biarch systems. Try to rely on ldconfig only, without using objdump and gcc.
........
  r68496 | antoine.pitrou | 2009-01-10 18:33:21 +0000 (Sa, 10 Jan 2009) | 3 lines

  Add ACKS entries for some of the patches I've been committing.
........
  r68498 | benjamin.peterson | 2009-01-10 19:08:49 +0000 (Sa, 10 Jan 2009) | 1 line

  fix encoding
........
  r68532 | kristjan.jonsson | 2009-01-11 16:23:37 +0000 (So, 11 Jan 2009) | 1 line

  Issue 4879: Allow buffering for HTTPResponse
........
  r68542 | martin.v.loewis | 2009-01-12 08:11:24 +0000 (Mo, 12 Jan 2009) | 2 lines

  Issue #4893: Use NT threading on CE.
........
  r68544 | kristjan.jonsson | 2009-01-12 09:20:34 +0000 (Mo, 12 Jan 2009) | 1 line

  Update Misc/NEWS for issue 3582
........
  r68545 | kristjan.jonsson | 2009-01-12 09:24:04 +0000 (Mo, 12 Jan 2009) | 1 line

  Misc/NEWS for issue 4293
........
  r68546 | raymond.hettinger | 2009-01-12 10:37:32 +0000 (Mo, 12 Jan 2009) | 1 line

  Optimize heapq.nsmallest/nlargest for cases where n==1 or n>=size.
........
  r68559 | raymond.hettinger | 2009-01-12 22:58:41 +0000 (Mo, 12 Jan 2009) | 1 line

  Issue 1696199: Add collections.Counter().
........
  r68560 | amaury.forgeotdarc | 2009-01-12 23:36:55 +0000 (Mo, 12 Jan 2009) | 6 lines

  #3720: Interpreter crashes when an evil iterator removes its own next function.

  Now the slot is filled with a function that always raises.

  Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
........
  r68562 | raymond.hettinger | 2009-01-13 01:05:03 +0000 (Di, 13 Jan 2009) | 7 lines

  Simplify Counter() API.  Replace items keyword argument
  with a mapping.  Makes Counter() idempotent, makes update()
  API the same as Counter.__init__(), makes a more readable
  repr, makes the API more dict-like, and allows Steven
  Bethard's update() example to work.
........
  r68565 | raymond.hettinger | 2009-01-13 03:49:43 +0000 (Di, 13 Jan 2009) | 1 line

  Minor documentation tweaks and simpler update() example.
........
  r68566 | raymond.hettinger | 2009-01-13 04:13:53 +0000 (Di, 13 Jan 2009) | 1 line

  Fixup and simplify docstrings and doctests.
........
  r68567 | raymond.hettinger | 2009-01-13 04:50:35 +0000 (Di, 13 Jan 2009) | 1 line

  Speed-up __repr__.  Eliminate duplicate tests.  Use a from-irmport.
........
  r68568 | georg.brandl | 2009-01-13 08:11:07 +0000 (Di, 13 Jan 2009) | 2 lines

  Fix call signature and markup.
........
  r68569 | raymond.hettinger | 2009-01-13 08:38:14 +0000 (Di, 13 Jan 2009) | 7 lines

  Add table of idioms/patterns for using Counter objects.
  Improve the appearance and flow of the References section -- it used
  to have a box around it that wasn't distinct from the preceding code
  boxes and it had a weird bolding pattern and hanging indents that
  made the section disproportionately large.
........
  r68571 | armin.ronacher | 2009-01-13 11:52:23 +0000 (Di, 13 Jan 2009) | 3 lines

  ast.literal_eval can properly evaluate complex numbers now.  This fixes issue4907.
........
  r68592 | amaury.forgeotdarc | 2009-01-13 23:19:08 +0000 (Di, 13 Jan 2009) | 5 lines

  #4807: Remove a wrong usage of wsprintf in the winreg module
  ("windows sprintf", different than swprintf)

  Needed for the windows CE port.
........
  r68596 | amaury.forgeotdarc | 2009-01-13 23:39:22 +0000 (Di, 13 Jan 2009) | 3 lines

  #1162154: inspect.getmembers() now skips attributes that raise AttributeError,
  e.g. a __slots__ attribute which has not been set.
........
  r68597 | benjamin.peterson | 2009-01-13 23:43:50 +0000 (Di, 13 Jan 2009) | 1 line

  fix test_xmlrpc failures #4939
........
  r68603 | raymond.hettinger | 2009-01-14 00:15:21 +0000 (Mi, 14 Jan 2009) | 1 line

  Minor doc tweaks.
........
  r68604 | raymond.hettinger | 2009-01-14 01:15:06 +0000 (Mi, 14 Jan 2009) | 1 line

  Add tests for __init__() and update() with no args.
........
  r68607 | kristjan.jonsson | 2009-01-14 10:50:57 +0000 (Mi, 14 Jan 2009) | 2 lines

  Re-enable all tests for windows platforms.
  Also, explicitly connect to the IPV4 address.  On windows platforms supporting AF_INET6, the SocketProxy would connect using socket.create_connection('localhost', port) which would cycle through all address families and try to connect.  It would try connecting using AF_INET6 first and this would cause a delay of up to a second.
........
  r68618 | kristjan.jonsson | 2009-01-15 17:20:21 +0000 (Do, 15 Jan 2009) | 1 line

  Issue 4929:  Handle socket errors when receiving
........
  r68648 | benjamin.peterson | 2009-01-17 04:28:57 +0000 (Sa, 17 Jan 2009) | 1 line

  use enumerate
........
  r68665 | amaury.forgeotdarc | 2009-01-17 17:11:50 +0000 (Sa, 17 Jan 2009) | 3 lines

  #4930: Slightly cleaner (and faster) code in type creation:
  compare slots by address, not by name.
........
  r68667 | amaury.forgeotdarc | 2009-01-17 20:18:59 +0000 (Sa, 17 Jan 2009) | 3 lines

  #4077: No need to append \n when calling Py_FatalError
  + fix a declaration to make it match the one in pythonrun.h
........
  r68676 | benjamin.peterson | 2009-01-17 22:27:54 +0000 (Sa, 17 Jan 2009) | 1 line

  fix inspect.isclass() on instances with a custom __getattr__ #1225107
........
  r68722 | kristjan.jonsson | 2009-01-18 10:58:44 +0000 (So, 18 Jan 2009) | 1 line

  issue 4293:  make test_capi.py more robutst, it times out on some platforms, presumably waiting for threads.  Lower the thread count to 16.
........
  r68739 | benjamin.peterson | 2009-01-18 21:11:38 +0000 (So, 18 Jan 2009) | 1 line

  fix test that wasn't working as expected #4990
........
  r68763 | kristjan.jonsson | 2009-01-19 13:10:27 +0000 (Mo, 19 Jan 2009) | 2 lines

  Issue 4957
  Let os.ftruncate raise OSError like documented.
........
  r68764 | benjamin.peterson | 2009-01-19 15:04:35 +0000 (Mo, 19 Jan 2009) | 3 lines

  Removed merge tracking for "svnmerge" for
  svn+ssh://pythondev@svn.python.org/python/branches/trunk-math
........
  r68766 | benjamin.peterson | 2009-01-19 15:06:33 +0000 (Mo, 19 Jan 2009) | 3 lines

  Removed merge tracking for "svnmerge" for
  svn+ssh://pythondev@svn.python.org/python/branches/tnelson-trunk-bsddb-47-upgrade
........
  r68772 | benjamin.peterson | 2009-01-19 15:42:23 +0000 (Mo, 19 Jan 2009) | 1 line

  add a note about the ftruncate change
........
  r68773 | benjamin.peterson | 2009-01-19 15:51:27 +0000 (Mo, 19 Jan 2009) | 1 line

  simplify code
........
  r68785 | benjamin.peterson | 2009-01-19 21:08:37 +0000 (Mo, 19 Jan 2009) | 1 line

  I'm sick of these deprecations warnings in test_os
........
  r68789 | raymond.hettinger | 2009-01-20 01:19:26 +0000 (Di, 20 Jan 2009) | 6 lines

  Build-outs for Counter() class:
  * Constructor and update() support keyword args (like their dict counterparts).
  * The 'del' statement no longer raises KeyError for missing values.
  * Add multiset operations:  __add__, __sub__, __and__, __or__.
........
  r68792 | raymond.hettinger | 2009-01-20 02:24:38 +0000 (Di, 20 Jan 2009) | 1 line

  Add Counter() to __all__.
........
  r68793 | raymond.hettinger | 2009-01-20 03:36:36 +0000 (Di, 20 Jan 2009) | 1 line

  Make merging easier by formattng comment blocks the same in Py3.1
........
  r68803 | raymond.hettinger | 2009-01-20 12:59:36 +0000 (Di, 20 Jan 2009) | 1 line

  Fix typos.
........
  r68807 | benjamin.peterson | 2009-01-20 14:31:08 +0000 (Di, 20 Jan 2009) | 1 line

  backport r68802 (bugfix)
........
  r68826 | vinay.sajip | 2009-01-20 22:43:17 +0000 (Di, 20 Jan 2009) | 1 line

  Issue 5013: Fixed bug in FileHandler when delay was set.
........
  r68829 | vinay.sajip | 2009-01-20 23:16:08 +0000 (Di, 20 Jan 2009) | 1 line

  Issue 5013: Fixed bug in FileHandler when delay was set - added fix for RotatingFileHandler and changed header comment slightly.
........
  r68831 | raymond.hettinger | 2009-01-20 23:42:54 +0000 (Di, 20 Jan 2009) | 1 line

  Beautify and cleanup the references section.
........
  r68839 | jesse.noller | 2009-01-21 02:08:17 +0000 (Mi, 21 Jan 2009) | 1 line

  Issue 5009: multiprocessing: failure in manager._debug_info()
........
  r68840 | andrew.kuchling | 2009-01-21 02:15:43 +0000 (Mi, 21 Jan 2009) | 1 line

  Add some items
........
  r68843 | raymond.hettinger | 2009-01-21 20:31:50 +0000 (Mi, 21 Jan 2009) | 1 line

  Simplify explanation of multiset operations by removing restrictions on negative inputs.
........
  r68845 | raymond.hettinger | 2009-01-21 23:12:51 +0000 (Mi, 21 Jan 2009) | 1 line

  Tighten-up the docs for Counter().
........
  r68850 | raymond.hettinger | 2009-01-22 05:20:47 +0000 (Do, 22 Jan 2009) | 1 line

  More doc tweaks.
........
  r68853 | raymond.hettinger | 2009-01-22 09:05:43 +0000 (Do, 22 Jan 2009) | 1 line

  Update comments and add an optimized path for Counter.update().
........
  r68881 | andrew.kuchling | 2009-01-24 03:28:18 +0000 (Sa, 24 Jan 2009) | 1 line

  Add various items
........
  r68884 | kristjan.jonsson | 2009-01-24 10:52:26 +0000 (Sa, 24 Jan 2009) | 1 line

  Add a test for UNC import paths, see issue 3677
........
  r68892 | martin.v.loewis | 2009-01-24 15:45:18 +0000 (Sa, 24 Jan 2009) | 2 lines

  Add heading for 2.7a0.
........
  r68925 | benjamin.peterson | 2009-01-25 17:15:10 +0000 (So, 25 Jan 2009) | 5 lines

  fix building the core with --disable-unicode

  I changed some bytearray methods to use strings instead of unicode like bytes_repr
  Also, bytearray.fromhex() can take strings as well as unicode
........
  r68927 | hirokazu.yamamoto | 2009-01-25 17:46:48 +0000 (So, 25 Jan 2009) | 1 line

  Fixed compile error on windows.
........
  r68929 | tarek.ziade | 2009-01-25 18:19:25 +0000 (So, 25 Jan 2009) | 1 line

  Fixed #4863: removed distutils.mwerkscompiler
........
  r68933 | tarek.ziade | 2009-01-25 19:29:10 +0000 (So, 25 Jan 2009) | 1 line

  Issue #4863, removing remaining bits
........
  r68941 | raymond.hettinger | 2009-01-25 21:04:14 +0000 (So, 25 Jan 2009) | 1 line

  Promote compress() from a recipe to being a regular itertool.
........
  r68942 | raymond.hettinger | 2009-01-25 21:31:47 +0000 (So, 25 Jan 2009) | 1 line

  Improved itertools recipe for generating powerset().
........
  r68943 | tarek.ziade | 2009-01-25 22:09:10 +0000 (So, 25 Jan 2009) | 1 line

  Issue #5052: removed backward compatibility information (out of date)
........
  r68953 | brett.cannon | 2009-01-26 01:16:50 +0000 (Mo, 26 Jan 2009) | 3 lines

  Backport importlib in the form of providing importlib.import_module(). This has
  been done purely to help transitions from 2.7 to 3.1.
........
  r68964 | raymond.hettinger | 2009-01-26 16:52:22 +0000 (Mo, 26 Jan 2009) | 1 line

  Fix signed/unsigned mismatch.
........
  r68985 | raymond.hettinger | 2009-01-26 23:29:09 +0000 (Mo, 26 Jan 2009) | 6 lines

  Remove startup firewall message.  That is handled by an error dialog
  whenever a connection cannot be formed.  Also, the Idle version number
  is already in the About Idle dialog.  Now, the startup is clean looking
  once again.
........
  r68998 | raymond.hettinger | 2009-01-27 02:36:33 +0000 (Di, 27 Jan 2009) | 3 lines

  Tweak column alignment for collections docs.
........
  r69001 | raymond.hettinger | 2009-01-27 02:58:49 +0000 (Di, 27 Jan 2009) | 1 line

  Promote combinations_with_replacement() from a recipe to a regular itertool.
........
  r69003 | benjamin.peterson | 2009-01-27 03:07:53 +0000 (Di, 27 Jan 2009) | 1 line

  excellent place to use a set() #5069
........
  r69010 | raymond.hettinger | 2009-01-27 09:33:06 +0000 (Di, 27 Jan 2009) | 1 line

  Add tests to verify combinatoric relationships.
........
  r69012 | raymond.hettinger | 2009-01-27 09:52:35 +0000 (Di, 27 Jan 2009) | 1 line

  Stronger tests for combinatoric relationships.
........
  r69014 | raymond.hettinger | 2009-01-27 10:03:04 +0000 (Di, 27 Jan 2009) | 1 line

  Issue 5021: doctest.testfile should set __name__
........
  r69018 | raymond.hettinger | 2009-01-27 10:36:14 +0000 (Di, 27 Jan 2009) | 1 line

  More exhaustive combinatoric checks.
........
  r69023 | raymond.hettinger | 2009-01-27 13:26:35 +0000 (Di, 27 Jan 2009) | 1 line

  Add more tests for the powerset() recipe.
........
  r69039 | benjamin.peterson | 2009-01-27 23:15:48 +0000 (Di, 27 Jan 2009) | 1 line

  use True and False
........
  r69050 | guilherme.polo | 2009-01-28 13:09:03 +0000 (Mi, 28 Jan 2009) | 2 lines

  Added the ttk module. See issue #2983: Ttk support for Tkinter.
........
  r69053 | guilherme.polo | 2009-01-28 15:56:01 +0000 (Mi, 28 Jan 2009) | 2 lines

  Demos for ttk added.
........
  r69060 | guilherme.polo | 2009-01-28 19:23:28 +0000 (Mi, 28 Jan 2009) | 2 lines

  Added support for collecting tests only from specific packages.
........
  r69061 | guilherme.polo | 2009-01-28 19:28:04 +0000 (Mi, 28 Jan 2009) | 4 lines

  * Renaming test_tk_* to test_ttk_* since that is what they are testing.
  * Added ttk tests to the expected skips mapping just like where test_tcl
  was expected to be skipped too.
........
  r69062 | guilherme.polo | 2009-01-28 20:02:01 +0000 (Mi, 28 Jan 2009) | 1 line

  Make sure the root windows gets destroyed
........
  r69063 | guilherme.polo | 2009-01-28 20:03:26 +0000 (Mi, 28 Jan 2009) | 2 lines

  Issue #5083: New 'gui' resource for regrtest.
........
  r69070 | raymond.hettinger | 2009-01-28 23:02:26 +0000 (Mi, 28 Jan 2009) | 6 lines

  Issue 4920:  Fixed next() vs __next__() issues in the ABCs
  for Iterator and MutableSet.  Also added thorough test for
  required abstractmethods.
........
  r69074 | raymond.hettinger | 2009-01-28 23:58:16 +0000 (Mi, 28 Jan 2009) | 1 line

  Correct docs for ABCs (MutableSequence was missing __setiem).  Simplify the table by taking out inherited requirements for abstract methods.
........
  r69080 | brett.cannon | 2009-01-29 00:55:33 +0000 (Do, 29 Jan 2009) | 2 lines

  Ignore .pyc and .pyo files.
........
  r69085 | raymond.hettinger | 2009-01-29 03:21:42 +0000 (Do, 29 Jan 2009) | 1 line

  Update itertools.__doc__ to include all tools.
........
  r69087 | raymond.hettinger | 2009-01-29 03:43:44 +0000 (Do, 29 Jan 2009) | 1 line

  Fix typo.
........
  r69112 | benjamin.peterson | 2009-01-30 02:02:25 +0000 (Fr, 30 Jan 2009) | 1 line

  pep8tify conditionals
........
  r69113 | benjamin.peterson | 2009-01-30 02:24:39 +0000 (Fr, 30 Jan 2009) | 1 line

  make _tkinter._flatten check the result of PySequence_Size for errors #3880
........
  r69129 | benjamin.peterson | 2009-01-31 01:42:55 +0000 (Sa, 31 Jan 2009) | 1 line

  check the errno in bad fd cases
........
  r69130 | andrew.kuchling | 2009-01-31 02:50:09 +0000 (Sa, 31 Jan 2009) | 1 line

  Add a section
........
  r69134 | benjamin.peterson | 2009-01-31 16:29:18 +0000 (Sa, 31 Jan 2009) | 1 line

  completely detabify unicodeobject.c
........
  r69139 | mark.dickinson | 2009-01-31 16:44:04 +0000 (Sa, 31 Jan 2009) | 2 lines

  Add an extra test for long <-> float hash equivalence.
........
  r69143 | benjamin.peterson | 2009-01-31 21:00:10 +0000 (Sa, 31 Jan 2009) | 1 line

  I believe the intention here was to avoid a global lookup
........
  r69146 | benjamin.peterson | 2009-01-31 21:47:42 +0000 (Sa, 31 Jan 2009) | 1 line

  fix indentation
........
  r69149 | benjamin.peterson | 2009-01-31 22:03:19 +0000 (Sa, 31 Jan 2009) | 1 line

  fix indentation; looks like all I managed to do the first time is make things uglier
........
  r69154 | benjamin.peterson | 2009-01-31 22:33:02 +0000 (Sa, 31 Jan 2009) | 1 line

  fix indentation in comment
........
  r69156 | gregory.p.smith | 2009-01-31 22:57:30 +0000 (Sa, 31 Jan 2009) | 4 lines

  - Issue #5104: The socket module now raises OverflowError when 16-bit port and
    protocol numbers are supplied outside the allowed 0-65536 range on bind()
    and getservbyport().
........
  r69158 | benjamin.peterson | 2009-01-31 23:54:38 +0000 (Sa, 31 Jan 2009) | 1 line

  more flags which only work for function blocks
........
  r69169 | guilherme.polo | 2009-02-01 02:56:16 +0000 (So, 01 Feb 2009) | 3 lines

  Restore Tkinter.Tk._loadtk so this test doesn't fail for problems
  related to ttk.
........
  r69195 | guilherme.polo | 2009-02-02 00:38:54 +0000 (Mo, 02 Feb 2009) | 3 lines

  Use a single Tcl interpreter through all these tests, this may help some
  failing buildbots.
........
  r69211 | guilherme.polo | 2009-02-02 20:23:29 +0000 (Mo, 02 Feb 2009) | 1 line

  Restore the previous geometry before leaving the test
........
  r69212 | guilherme.polo | 2009-02-02 20:28:59 +0000 (Mo, 02 Feb 2009) | 1 line

  Moving to importlib
........
  r69227 | raymond.hettinger | 2009-02-02 21:50:13 +0000 (Mo, 02 Feb 2009) | 1 line

  Issue 1242657: list(obj) can swallow KeyboardInterrupt.
........
  r69237 | raymond.hettinger | 2009-02-03 02:23:19 +0000 (Di, 03 Feb 2009) | 1 line

  Validate that __length_hint__ returns a usable result.
........
  r69242 | raymond.hettinger | 2009-02-03 03:37:03 +0000 (Di, 03 Feb 2009) | 1 line

  Register decimals as numbers.Number
........
  r69252 | brett.cannon | 2009-02-03 04:58:29 +0000 (Di, 03 Feb 2009) | 3 lines

  Make importlib a package. This allows using svn:externals in the sandbox to
  package up the code for separate distribution.
........
  r69253 | brett.cannon | 2009-02-03 04:59:58 +0000 (Di, 03 Feb 2009) | 1 line

  Ignore bytecode files in importlib.
........
  r69257 | brett.cannon | 2009-02-03 05:08:22 +0000 (Di, 03 Feb 2009) | 1 line

  Backport importlib to at least Python 2.5 by getting rid of use of str.format.
........
  r69260 | thomas.heller | 2009-02-03 17:07:40 +0000 (Di, 03 Feb 2009) | 9 lines

  This refactoring should make it easier to add new calling conventions.

  Replace ffi_call_STDCALL and ffi_call_SYSV by a ffi_call_x86 function
  that cleans up the stack when FFI_SYSV is used, and does nothing for
  FFI_STDCALL.

  Remove libffi_msvc\win32.S, which is out of date and also unused; it
  was only used for building ctypes with the MingW compiler.
........
  r69262 | brett.cannon | 2009-02-03 21:13:05 +0000 (Di, 03 Feb 2009) | 5 lines

  Make importlib backwards-compatible to Python 2.2 (but this is not promised to
  last; just doing it to be nice).

  Also fix a message for an exception.
........
  r69268 | kristjan.jonsson | 2009-02-04 10:05:25 +0000 (Mi, 04 Feb 2009) | 1 line

  issue 4804:  Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows.  These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid.
........
  r69285 | tarek.ziade | 2009-02-05 09:06:23 +0000 (Do, 05 Feb 2009) | 1 line

  Fix comment for #1835
........
  r69302 | neil.schemenauer | 2009-02-05 16:14:39 +0000 (Do, 05 Feb 2009) | 3 lines

  Fix get_python_inc() to work when building in a directory separate from
  the source.  Also, define 'srcdir' on non-posix platforms.
........
  r69303 | neil.schemenauer | 2009-02-05 16:19:05 +0000 (Do, 05 Feb 2009) | 4 lines

  Since sysconfig.get_python_inc() now works when building in a
  directory other than the source directory, simplify the test code in
  test_sysconfig.py.
........
  r69305 | neil.schemenauer | 2009-02-05 16:32:29 +0000 (Do, 05 Feb 2009) | 4 lines

  Make setup.py work when building in a directory other than the
  source directory.  Mainly use 'srcdir' rather than os.getcwd() or
  '.'.
........
  r69315 | neil.schemenauer | 2009-02-05 22:14:04 +0000 (Do, 05 Feb 2009) | 2 lines

  Oops, Mac build needs the 'incdirlist' variable so restore it.
........
  r69322 | neil.schemenauer | 2009-02-06 00:21:55 +0000 (Fr, 06 Feb 2009) | 2 lines

  Distutils apparently requires an absolute path so provide one.
........
  r69324 | tarek.ziade | 2009-02-06 00:31:59 +0000 (Fr, 06 Feb 2009) | 1 line

  Fixed #1276768: verbose option was not used in the code.
........
  r69330 | tarek.ziade | 2009-02-06 00:46:57 +0000 (Fr, 06 Feb 2009) | 1 line

  README now reflects the current state
........
  r69331 | eric.smith | 2009-02-06 00:48:26 +0000 (Fr, 06 Feb 2009) | 2 lines

  Implement issue #4285, convert sys.version_info to a named
  tuple. Patch by Ross Light.
........
  r69332 | tarek.ziade | 2009-02-06 00:49:45 +0000 (Fr, 06 Feb 2009) | 1 line

  using >= so setting verbose to 2 will work as well
........
  r69342 | tarek.ziade | 2009-02-06 01:15:51 +0000 (Fr, 06 Feb 2009) | 1 line

  fixed #1520877: now distutils reads Read  from the environment/Makefile
........
  r69356 | tarek.ziade | 2009-02-06 08:20:15 +0000 (Fr, 06 Feb 2009) | 1 line

  Fixed #3987 : removed unused import
........
  r69360 | tarek.ziade | 2009-02-06 08:55:23 +0000 (Fr, 06 Feb 2009) | 1 line

  removed types usage and added test coverage (work for #3986)
........
  r69364 | kristjan.jonsson | 2009-02-06 10:17:34 +0000 (Fr, 06 Feb 2009) | 1 line

  Fix a number of Win32ErrorTests error cases.  chmod wasn't being tested.  'access' never raises an error.
........
  r69365 | armin.rigo | 2009-02-06 11:46:26 +0000 (Fr, 06 Feb 2009) | 2 lines

  Ivan on IRC in #twisted reported this crasher.
........
  r69366 | tarek.ziade | 2009-02-06 13:27:38 +0000 (Fr, 06 Feb 2009) | 1 line

  Fixed #5167: test_customize_compiler does not apply under non unix compilers
........
  r69373 | neil.schemenauer | 2009-02-06 21:08:52 +0000 (Fr, 06 Feb 2009) | 5 lines

  Overhaul Lib/compiler block ordering.  The previous code was filled with
  hacks.  The new code is based on issue #2472 posted by Antoine Pitrou.  I
  did some further cleanups of the pyassem code and optimized the block
  ordering pass.
........
  r69374 | neil.schemenauer | 2009-02-06 21:33:45 +0000 (Fr, 06 Feb 2009) | 6 lines

  Convert "srcdir" into an absolute path if that seems prudent.  Currrently
  the only user of this is Lib/distutils/tests/test_build_ext.py (in order
  to find the source for xxmodule.c).  I'm not sure if other platforms
  need similar tweaks, I'm not brave enough to attempt it without being
  able to test.
........
  r69377 | guilherme.polo | 2009-02-06 22:48:07 +0000 (Fr, 06 Feb 2009) | 5 lines

  Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will
  not be used again (this requires Tcl/Tk 8.3.1), also fix a memory
  leak in Tkapp_Call when calling from a thread different than the one that
  created the Tcl interpreter.
........
  r69385 | tarek.ziade | 2009-02-07 00:05:39 +0000 (Sa, 07 Feb 2009) | 1 line

  #3986 replacing string and types call (like in the Py3k branch), and put exec_msg call at the right place
........
  r69389 | neil.schemenauer | 2009-02-07 00:13:39 +0000 (Sa, 07 Feb 2009) | 2 lines

  Make names generated for 'with' variables match the built-in compiler.
........
  r69394 | neil.schemenauer | 2009-02-07 00:54:41 +0000 (Sa, 07 Feb 2009) | 4 lines

  Issue #999042: The Python compiler now handles explict global statements
  correctly (should be assigned using STORE_GLOBAL opcode).  This was done by
  having the system table differentiate between explict and implicit globals.
........
  r69404 | guilherme.polo | 2009-02-07 02:20:29 +0000 (Sa, 07 Feb 2009) | 2 lines

  Eliminated the need to use ttk.__loadtk__ and the problems related it.
........
  r69410 | neil.schemenauer | 2009-02-07 14:53:31 +0000 (Sa, 07 Feb 2009) | 4 lines

  Fix broken test in test_hotshot.  Treating the current directory as an
  empty file is sloppy and non-portable.  Use NamedTemporaryFile to make
  an empty file.
........
  r69413 | neil.schemenauer | 2009-02-07 18:35:16 +0000 (Sa, 07 Feb 2009) | 2 lines

  Add test for issue #999042, explict global statement works.
........
  r69415 | benjamin.peterson | 2009-02-07 19:08:22 +0000 (Sa, 07 Feb 2009) | 1 line

  make destinsrc private
........
  r69419 | nick.coghlan | 2009-02-08 01:26:34 +0000 (So, 08 Feb 2009) | 1 line

  Issue 4195: Restore the ability to execute packages with the -m switch (but this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda)
........
  r69420 | nick.coghlan | 2009-02-08 01:46:01 +0000 (So, 08 Feb 2009) | 1 line

  Mention patch submitter in NEWS entry for r69419
........
  r69425 | nick.coghlan | 2009-02-08 03:17:00 +0000 (So, 08 Feb 2009) | 1 line

  Issue #4512 closeout: Make ZipImport.get_filename() a public method
........
  r69443 | mark.dickinson | 2009-02-08 17:33:11 +0000 (So, 08 Feb 2009) | 2 lines

  Silence 'arg may be used uninitialized in this function' warning from gcc.
........
  r69447 | vinay.sajip | 2009-02-08 19:06:08 +0000 (So, 08 Feb 2009) | 2 lines

  Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5.
........
  r69459 | mark.dickinson | 2009-02-09 14:18:43 +0000 (Mo, 09 Feb 2009) | 3 lines

  Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs.
  It now forces its argument to double before testing for infinity.
........
  r69460 | guilherme.polo | 2009-02-09 16:09:17 +0000 (Mo, 09 Feb 2009) | 1 line

  Turned setup_master public
........
  r69466 | raymond.hettinger | 2009-02-09 18:39:41 +0000 (Mo, 09 Feb 2009) | 3 lines

  Issue 5171: itertools.product docstring missing 'repeat' argument
........
  r69467 | guilherme.polo | 2009-02-09 19:21:21 +0000 (Mo, 09 Feb 2009) | 2 lines

  Some tests for Tkinter.Text.search
........
  r69470 | guilherme.polo | 2009-02-09 19:57:04 +0000 (Mo, 09 Feb 2009) | 1 line

  Checking for tk availability before continuing (basically the same that is done in test_ttk_guionly)
........
  r69473 | guilherme.polo | 2009-02-09 20:50:27 +0000 (Mo, 09 Feb 2009) | 3 lines

  Fixed issue #5122: Synchronize tk load failure check to prevent a
  potential deadlock.
........
  r69474 | guilherme.polo | 2009-02-09 20:57:45 +0000 (Mo, 09 Feb 2009) | 1 line

  Enforcing Tk 8.3.1 requirement.
........
  r69480 | raymond.hettinger | 2009-02-10 01:24:05 +0000 (Di, 10 Feb 2009) | 1 line

  Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames.
........
  r69481 | brett.cannon | 2009-02-10 02:07:38 +0000 (Di, 10 Feb 2009) | 4 lines

  compileall used the ctime of bytecode and source to determine if the bytecode
  should be recreated. This created a timing hole. Fixed by just doing what
  import does; check the mtime and magic number.
........
  r69495 | kristjan.jonsson | 2009-02-10 13:32:24 +0000 (Di, 10 Feb 2009) | 1 line

  Issue 4804.  Add a function to test the validity of file descriptors on Windows, and stop using global runtime settings to silence the warnings / assertions.
........
  r69498 | mark.dickinson | 2009-02-10 15:46:50 +0000 (Di, 10 Feb 2009) | 6 lines

  Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for
  negative arguments.  Previously, it raised TypeError.

  Thanks Lisandro Dalcin.
........
  r69516 | hirokazu.yamamoto | 2009-02-11 04:13:06 +0000 (Mi, 11 Feb 2009) | 2 lines

  Issue #5204: Define _PyVerify_fd on VC6 to make
  test_fdopen (test_os.py) pass.
........
  r69521 | benjamin.peterson | 2009-02-12 04:17:04 +0000 (Do, 12 Feb 2009) | 1 line

  no need for this __bases__ trick anymore
........
  r69522 | raymond.hettinger | 2009-02-12 05:39:46 +0000 (Do, 12 Feb 2009) | 3 lines

  Issue 5032:  added a step argument to itertools.count() and allowed non-integer arguments.
........
  r69525 | raymond.hettinger | 2009-02-12 10:16:19 +0000 (Do, 12 Feb 2009) | 1 line

  Fix spaces/tabs in example.
........
  r69528 | raymond.hettinger | 2009-02-12 12:04:26 +0000 (Do, 12 Feb 2009) | 1 line

  Add an extra testcase.
........
  r69530 | raymond.hettinger | 2009-02-12 12:43:01 +0000 (Do, 12 Feb 2009) | 1 line

  One more test.
........
  r69561 | gregory.p.smith | 2009-02-13 03:00:00 +0000 (Fr, 13 Feb 2009) | 5 lines

  - Issue #3745: Fix hashlib to always reject unicode and non buffer-api
    supporting objects as input no matter how it was compiled (built in
    implementations or external openssl library).
  (backported from a py3k branch)
........
  r69566 | tarek.ziade | 2009-02-13 09:12:33 +0000 (Fr, 13 Feb 2009) | 1 line

  #5158: added documentation on the depends option in distutils extensions
........
  r69578 | georg.brandl | 2009-02-13 11:03:59 +0000 (Fr, 13 Feb 2009) | 1 line

  #3694: add test for fix committed in r66693.
........
  r69579 | georg.brandl | 2009-02-13 11:06:59 +0000 (Fr, 13 Feb 2009) | 2 lines

  Fix warnings GCC emits where the argument of PyErr_Format is a single variable.
........
  r69580 | georg.brandl | 2009-02-13 11:10:04 +0000 (Fr, 13 Feb 2009) | 2 lines

  Fix warnings GCC emits where the argument of PyErr_Format is a single variable.
........
  r69582 | antoine.pitrou | 2009-02-13 13:52:33 +0000 (Fr, 13 Feb 2009) | 4 lines

  Issue #5186: Reduce hash collisions for objects with no __hash__ method by
  rotating the object pointer by 4 bits to the right.
........
  r69583 | antoine.pitrou | 2009-02-13 13:57:40 +0000 (Fr, 13 Feb 2009) | 3 lines

  Fix compiler warning (gcc)
........
  r69591 | martin.v.loewis | 2009-02-13 20:26:16 +0000 (Fr, 13 Feb 2009) | 1 line

  Update Tix build procedure.
........
  r69594 | tarek.ziade | 2009-02-13 22:22:03 +0000 (Fr, 13 Feb 2009) | 1 line

  Issue #2461: added tests for distutils.util
........
  r69602 | tarek.ziade | 2009-02-13 23:41:57 +0000 (Fr, 13 Feb 2009) | 1 line

  fix the environ for distutils test_util
........
  r69604 | raymond.hettinger | 2009-02-14 00:25:51 +0000 (Sa, 14 Feb 2009) | 1 line

  Add keyword argument support to itertools.count().
........
  r69609 | tarek.ziade | 2009-02-14 14:10:23 +0000 (Sa, 14 Feb 2009) | 1 line

  Fix for #5257: refactored all tests in distutils, so they use a temporary directory.
........
  r69610 | tarek.ziade | 2009-02-14 14:12:30 +0000 (Sa, 14 Feb 2009) | 1 line

  Replace variable
........
  r69617 | benjamin.peterson | 2009-02-14 16:51:03 +0000 (Sa, 14 Feb 2009) | 1 line

  we're no longer using CVS, so this doesn't have to be binary
........
  r69619 | benjamin.peterson | 2009-02-14 17:00:51 +0000 (Sa, 14 Feb 2009) | 1 line

  this needn't be a shebang line
........
  r69634 | mark.dickinson | 2009-02-15 10:13:41 +0000 (So, 15 Feb 2009) | 6 lines

  Issue #5260: Various portability and standards compliance fixes, optimizations
  and cleanups in Objects/longobject.c.  The most significant change is that
  longs now use less memory:  average savings are 2 bytes per long on 32-bit
  systems and 6 bytes per long on 64-bit systems.  (This memory saving already
  exists in py3k.)
........
  r69639 | mark.dickinson | 2009-02-15 15:48:39 +0000 (So, 15 Feb 2009) | 2 lines

  A few more minor fixes in longobject.c
........
  r69666 | eric.smith | 2009-02-16 09:56:39 +0000 (Mo, 16 Feb 2009) | 1 line

  Added Ross Light to ACKS, for bug 4285 (r69331).
........
  r69685 | raymond.hettinger | 2009-02-16 20:39:12 +0000 (Mo, 16 Feb 2009) | 1 line

  Add GC support to count() objects.  Backport candidate.
........
  r69688 | benjamin.peterson | 2009-02-16 21:07:52 +0000 (Mo, 16 Feb 2009) | 1 line

  fix compiler warnings
........
  r69689 | benjamin.peterson | 2009-02-16 21:09:09 +0000 (Mo, 16 Feb 2009) | 1 line

  remove some PyBytes_* aliases that are not in 3.x
........
  r69690 | benjamin.peterson | 2009-02-16 21:23:04 +0000 (Mo, 16 Feb 2009) | 1 line

  PyList_Append() can fail
........
  r69692 | tarek.ziade | 2009-02-16 21:38:01 +0000 (Mo, 16 Feb 2009) | 1 line

  Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files
........
  r69693 | tarek.ziade | 2009-02-16 21:41:54 +0000 (Mo, 16 Feb 2009) | 1 line

  #2279: use os.sep so the MANIFEST file test work on win32
........
  r69700 | tarek.ziade | 2009-02-16 22:38:43 +0000 (Mo, 16 Feb 2009) | 1 line

  note about #2279
........
  r69709 | raymond.hettinger | 2009-02-17 08:33:01 +0000 (Di, 17 Feb 2009) | 1 line

  Fix-up intro paragraph for collections docs.
........
  r69710 | tarek.ziade | 2009-02-17 09:42:44 +0000 (Di, 17 Feb 2009) | 1 line

  #2279 added the plain path case for data_files
........
  r69715 | raymond.hettinger | 2009-02-17 11:00:27 +0000 (Di, 17 Feb 2009) | 1 line

  Fixup intro paragraphs for the itertools docs.  Add some tables for quick reference.
........
  r69716 | ronald.oussoren | 2009-02-17 12:38:42 +0000 (Di, 17 Feb 2009) | 2 lines

  Fix issue776533.
........
  r69724 | tarek.ziade | 2009-02-17 23:06:51 +0000 (Di, 17 Feb 2009) | 1 line

  fixed the data_files inclusion behavior
........
  r69739 | raymond.hettinger | 2009-02-18 20:54:53 +0000 (Mi, 18 Feb 2009) | 1 line

  Generalize the itertools.tee() recipe.
........
  r69743 | raymond.hettinger | 2009-02-18 23:10:19 +0000 (Mi, 18 Feb 2009) | 1 line

  Py3k warnings now automatically include -Qwarn for division.
........
  r69748 | raymond.hettinger | 2009-02-19 02:15:14 +0000 (Do, 19 Feb 2009) | 1 line

  Add keyword arg support to itertools.compress().
........
  r69751 | raymond.hettinger | 2009-02-19 02:38:25 +0000 (Do, 19 Feb 2009) | 1 line

  Add keyword arg support to itertools.repeat().
........
  r69757 | raymond.hettinger | 2009-02-19 05:34:35 +0000 (Do, 19 Feb 2009) | 1 line

  Add some cross-references to the docs.  Simplify the python code equivalent for izip().  Supply an optional argument for the nth() recipe.
........
  r69761 | raymond.hettinger | 2009-02-19 05:51:41 +0000 (Do, 19 Feb 2009) | 1 line

  Add an example for math.fsum() and elaborate on the accurary note.
........
  r69765 | raymond.hettinger | 2009-02-19 06:55:03 +0000 (Do, 19 Feb 2009) | 1 line

  Add links to helpful external resources.
........
  r69770 | raymond.hettinger | 2009-02-19 09:50:24 +0000 (Do, 19 Feb 2009) | 1 line

  Inline coefficients in gamma().  Add reflection formula.  Add comments.
........
  r69772 | vinay.sajip | 2009-02-19 12:31:32 +0000 (Do, 19 Feb 2009) | 1 line

  #5287: Add exception handling around findCaller() call to help out IronPython.
........
  r69777 | jeroen.ruigrok | 2009-02-19 18:52:21 +0000 (Do, 19 Feb 2009) | 3 lines

  Since we recommend one module per import line, reflect this also in the
  documentation.
........
  r69795 | benjamin.peterson | 2009-02-20 03:31:23 +0000 (Fr, 20 Feb 2009) | 1 line

  revert r69777 since all the experts agree that extra import lines distract from the code
........
  r69811 | collin.winter | 2009-02-20 19:30:41 +0000 (Fr, 20 Feb 2009) | 2 lines

  Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example.
........
  r69837 | raymond.hettinger | 2009-02-21 07:17:22 +0000 (Sa, 21 Feb 2009) | 4 lines

  Fix keyword arguments for itertools.count().
  Step arg without a start arg was ignored.
........
  r69838 | raymond.hettinger | 2009-02-21 08:58:42 +0000 (Sa, 21 Feb 2009) | 1 line

  Speedup and simplify negative counter using count's new step argument.
........
  r69855 | benjamin.peterson | 2009-02-21 23:09:33 +0000 (Sa, 21 Feb 2009) | 1 line

  fix compiler warnings
........
  r69861 | tarek.ziade | 2009-02-22 00:07:45 +0000 (So, 22 Feb 2009) | 1 line

  using versionchanged instead of versionadded for distutils doc on sdist default files
........
  r69870 | antoine.pitrou | 2009-02-22 17:25:52 +0000 (So, 22 Feb 2009) | 3 lines

  Try to make sense of the test_site buildbot failures
........
  r69871 | antoine.pitrou | 2009-02-22 18:20:46 +0000 (So, 22 Feb 2009) | 3 lines

  Revert debugging statements, culprit is possibly test_distutils (see #5316)
........
  r69874 | tarek.ziade | 2009-02-22 19:58:12 +0000 (So, 22 Feb 2009) | 1 line

  moved distutils.text_file tests into a real unittest class
........
  r69878 | tarek.ziade | 2009-02-22 20:11:46 +0000 (So, 22 Feb 2009) | 1 line

  removing map and lambda usage, so the test is similar to py3k's branch one
........
  r69881 | tarek.ziade | 2009-02-22 20:15:41 +0000 (So, 22 Feb 2009) | 1 line

  Removing unused __main__ sections
........
  r69889 | matthias.klose | 2009-02-22 23:14:26 +0000 (So, 22 Feb 2009) | 2 lines

  - Link the shared python library with $(MODLIBS).
........
  r69901 | georg.brandl | 2009-02-23 11:24:46 +0000 (Mo, 23 Feb 2009) | 2 lines

  #5349: C++ pure virtuals can also have an implementation.
........
  r69902 | tarek.ziade | 2009-02-23 12:41:29 +0000 (Mo, 23 Feb 2009) | 1 line

  more test coverage
........
  r69907 | georg.brandl | 2009-02-23 18:33:48 +0000 (Mo, 23 Feb 2009) | 1 line

  Fix grammar.
........
  r69908 | raymond.hettinger | 2009-02-23 19:32:55 +0000 (Mo, 23 Feb 2009) | 1 line

  Update itertools recipes to use next().
........
  r69937 | raymond.hettinger | 2009-02-24 12:23:23 +0000 (Di, 24 Feb 2009) | 3 lines

  Backport 69934:  Register xrange() as a Sequence.
........
  r69946 | brett.cannon | 2009-02-24 22:01:02 +0000 (Di, 24 Feb 2009) | 2 lines

  Expand upon test_site.test_s_option to try to debug its failure.
........
  r69947 | jeffrey.yasskin | 2009-02-24 22:48:34 +0000 (Di, 24 Feb 2009) | 3 lines

  Tools/scripts/analyze_dxp.py, a module with some helper functions to
  analyze the output of sys.getdxp().
........
  r69952 | raymond.hettinger | 2009-02-25 00:37:57 +0000 (Mi, 25 Feb 2009) | 1 line

  Sync-up py3.1 doc updates for super().
........
  r69953 | raymond.hettinger | 2009-02-25 00:39:47 +0000 (Mi, 25 Feb 2009) | 1 line

  Restore Py2.x version of sample call to super().
........
  r69955 | raymond.hettinger | 2009-02-25 00:52:37 +0000 (Mi, 25 Feb 2009) | 1 line

  More markup and spelling fixes.
........
  r69959 | raymond.hettinger | 2009-02-25 01:06:52 +0000 (Mi, 25 Feb 2009) | 1 line

  Remove reference to zero argument form of super() in 2.x docs.
........
  r69974 | mark.dickinson | 2009-02-25 20:29:50 +0000 (Mi, 25 Feb 2009) | 3 lines

  Replace long with twodigits, to avoid depending
  on sizeof(digit) < sizeof(long)
........
  r69976 | tarek.ziade | 2009-02-25 22:29:27 +0000 (Mi, 25 Feb 2009) | 1 line

  Fixed #5316 : test failure in test_site
........
  r69981 | raymond.hettinger | 2009-02-25 22:48:24 +0000 (Mi, 25 Feb 2009) | 1 line

  Clarify Counter() docs.
........
  r69983 | raymond.hettinger | 2009-02-26 00:05:24 +0000 (Do, 26 Feb 2009) | 1 line

  Fix typo.
........
  r69994 | georg.brandl | 2009-02-26 17:36:26 +0000 (Do, 26 Feb 2009) | 1 line

  Document that setting sys.py3kwarning wont do anything.
........
  r70000 | benjamin.peterson | 2009-02-26 19:07:18 +0000 (Do, 26 Feb 2009) | 1 line

  remove deprecated symtable.Symbol methods
........
2010-05-18 23:45:21 +00:00
Georg Brandl b6ca2d679c Merged revisions 69924,69998-69999 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69924 | benjamin.peterson | 2009-02-24 02:45:35 +0000 (Di, 24 Feb 2009) | 1 line

  update README on running tests
........
  r69998 | benjamin.peterson | 2009-02-26 19:04:40 +0000 (Do, 26 Feb 2009) | 1 line

  the startship is rather outdated now
........
  r69999 | benjamin.peterson | 2009-02-26 19:05:59 +0000 (Do, 26 Feb 2009) | 1 line

  comma
........
2010-05-18 23:38:50 +00:00
Georg Brandl 2eeea685a8 Merged revisions 68750,68811,68945,69157 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r68750 | benjamin.peterson | 2009-01-18 22:47:04 +0000 (So, 18 Jan 2009) | 1 line

  fix encoding cookie case
........
  r68811 | benjamin.peterson | 2009-01-20 18:58:27 +0000 (Di, 20 Jan 2009) | 1 line

  fix url
........
  r68945 | tarek.ziade | 2009-01-25 22:11:04 +0000 (So, 25 Jan 2009) | 1 line

  added missing module docstring
........
  r69157 | benjamin.peterson | 2009-01-31 23:43:25 +0000 (Sa, 31 Jan 2009) | 1 line

  add explanatory comment
........
2010-05-18 23:37:50 +00:00
Georg Brandl 32b8c4abd4 Blocked revisions 78586-78594,78600-78601,78604,78606,78613-78614,78623,78634,78749,79385 via svnmerge
........
  r78586 | benjamin.peterson | 2010-03-02 22:03:03 +0000 (Di, 02 Mär 2010) | 1 line

  remove coding cookie as mandated by PEP 8
........
  r78587 | benjamin.peterson | 2010-03-02 22:05:59 +0000 (Di, 02 Mär 2010) | 1 line

  set svn:eol-style
........
  r78588 | benjamin.peterson | 2010-03-02 22:08:40 +0000 (Di, 02 Mär 2010) | 1 line

  remove another coding cookie
........
  r78589 | georg.brandl | 2010-03-02 22:17:38 +0000 (Di, 02 Mär 2010) | 1 line

  Add some x-refs.
........
  r78590 | benjamin.peterson | 2010-03-02 22:20:10 +0000 (Di, 02 Mär 2010) | 1 line

  enable running of argparse tests and fix two that failed in the new environment
........
  r78591 | benjamin.peterson | 2010-03-02 22:23:33 +0000 (Di, 02 Mär 2010) | 1 line

  prevent warning filter adjustment from altering other tests
........
  r78592 | benjamin.peterson | 2010-03-02 22:24:30 +0000 (Di, 02 Mär 2010) | 1 line

  use test_main() in __main__ section
........
  r78593 | benjamin.peterson | 2010-03-02 22:26:25 +0000 (Di, 02 Mär 2010) | 1 line

  convert deprecated fail* methods to assert* variants
........
  r78594 | florent.xicluna | 2010-03-02 22:34:11 +0000 (Di, 02 Mär 2010) | 2 lines

  Test test_pep277 is only relevant for Unicode-friendly filesystems.
........
  r78600 | benjamin.peterson | 2010-03-02 22:58:01 +0000 (Di, 02 Mär 2010) | 1 line

  remove code to avoid BaseException.message bug
........
  r78601 | benjamin.peterson | 2010-03-02 23:02:02 +0000 (Di, 02 Mär 2010) | 1 line

  remove cross-version compatibility code
........
  r78604 | benjamin.peterson | 2010-03-02 23:43:47 +0000 (Di, 02 Mär 2010) | 1 line

  plug ref leaks
........
  r78606 | florent.xicluna | 2010-03-02 23:56:38 +0000 (Di, 02 Mär 2010) | 2 lines

  Fix wording.
........
  r78613 | benjamin.peterson | 2010-03-03 01:55:09 +0000 (Mi, 03 Mär 2010) | 1 line

  edit for style
........
  r78614 | benjamin.peterson | 2010-03-03 02:04:24 +0000 (Mi, 03 Mär 2010) | 1 line

  fix Sphinx warnings
........
  r78623 | lars.gustaebel | 2010-03-03 11:55:48 +0000 (Mi, 03 Mär 2010) | 3 lines

  Issue #7232: Add support for the context manager protocol
  to the TarFile class.
........
  r78634 | benjamin.peterson | 2010-03-03 21:28:25 +0000 (Mi, 03 Mär 2010) | 1 line

  rephrase
........
  r78749 | benjamin.peterson | 2010-03-07 00:29:44 +0000 (So, 07 Mär 2010) | 1 line

  eliminate py3k warnings in argparse
........
  r79385 | benjamin.peterson | 2010-03-24 22:03:09 +0000 (Mi, 24 Mär 2010) | 1 line

  replace copy right notice with simple attribution
........
2010-05-18 23:26:18 +00:00
Georg Brandl 840d22681b Merged revisions 79374,80152,80301 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79374 | martin.v.loewis | 2010-03-24 15:05:53 +0000 (Mi, 24 Mär 2010) | 2 lines

  Add Brian Curtin.
........
  r80152 | martin.v.loewis | 2010-04-17 17:10:55 +0000 (Sa, 17 Apr 2010) | 2 lines

  Add Giampaolo.
........
  r80301 | martin.v.loewis | 2010-04-21 06:37:48 +0000 (Mi, 21 Apr 2010) | 2 lines

  Add Tim Golden.
........
2010-05-18 23:24:41 +00:00
Georg Brandl 7b27a2ac4c Blocked revisions 79349,79381,79412,79537,79833,79943,79945,79947,79952,79963,80024,80064,80070,80085,80088,80605,80607,80646,80652,80674 via svnmerge
........
  r79349 | andrew.kuchling | 2010-03-23 18:39:24 +0000 (Di, 23 Mär 2010) | 1 line

  add some unittest items
........
  r79381 | andrew.kuchling | 2010-03-24 18:07:43 +0000 (Mi, 24 Mär 2010) | 1 line

  Various edits
........
  r79412 | andrew.kuchling | 2010-03-25 01:35:51 +0000 (Do, 25 Mär 2010) | 1 line

  Add various items
........
  r79537 | florent.xicluna | 2010-03-31 21:40:32 +0000 (Mi, 31 Mär 2010) | 2 lines

  Fix typo
........
  r79833 | eric.smith | 2010-04-06 15:17:33 +0000 (Di, 06 Apr 2010) | 1 line

  Note that PEP 378 also applies to int.
........
  r79943 | andrew.kuchling | 2010-04-11 01:40:30 +0000 (So, 11 Apr 2010) | 1 line

  Add various items
........
  r79945 | andrew.kuchling | 2010-04-11 01:40:49 +0000 (So, 11 Apr 2010) | 1 line

  name correct
........
  r79947 | andrew.kuchling | 2010-04-11 01:44:13 +0000 (So, 11 Apr 2010) | 1 line

  Remove distutils section
........
  r79952 | andrew.kuchling | 2010-04-11 12:49:37 +0000 (So, 11 Apr 2010) | 1 line

  Add two items
........
  r79963 | andrew.kuchling | 2010-04-11 20:40:09 +0000 (So, 11 Apr 2010) | 1 line

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

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

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

  Add some text
........
  r80085 | andrew.kuchling | 2010-04-14 23:55:17 +0000 (Mi, 14 Apr 2010) | 1 line

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

  Add various items
........
  r80605 | andrew.kuchling | 2010-04-29 00:22:16 +0000 (Do, 29 Apr 2010) | 1 line

  Add various items
........
  r80607 | andrew.kuchling | 2010-04-29 01:45:41 +0000 (Do, 29 Apr 2010) | 1 line

  Add various unittest items
........
  r80646 | andrew.kuchling | 2010-04-30 01:33:40 +0000 (Fr, 30 Apr 2010) | 1 line

  Add various items; rearrange unittest section a bit
........
  r80652 | andrew.kuchling | 2010-04-30 13:47:34 +0000 (Fr, 30 Apr 2010) | 1 line

  Add item
........
  r80674 | andrew.kuchling | 2010-05-01 01:19:16 +0000 (Sa, 01 Mai 2010) | 1 line

  Add various items
........
2010-05-18 23:23:16 +00:00
Georg Brandl 6d0182ef46 Blocked revisions 79923-79924,80068,80460 via svnmerge
........
  r79923 | georg.brandl | 2010-04-10 11:15:24 +0000 (Sa, 10 Apr 2010) | 1 line

  #8360: skipTest was added in 2.7.
........
  r79924 | georg.brandl | 2010-04-10 11:16:59 +0000 (Sa, 10 Apr 2010) | 1 line

  #8346: update version.
........
  r80068 | georg.brandl | 2010-04-14 08:56:01 +0000 (Mi, 14 Apr 2010) | 1 line

  #5341: fix typo and adapt docstring syntax.
........
  r80460 | georg.brandl | 2010-04-25 10:16:00 +0000 (So, 25 Apr 2010) | 1 line

  #8528: fix typo.
........
2010-05-18 23:20:58 +00:00
Georg Brandl eb41214dbc Merged revisions 79822,79828,79862,80067,80069,80080-80081,80084,80432-80433 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79822 | georg.brandl | 2010-04-06 08:18:15 +0000 (Di, 06 Apr 2010) | 1 line

  #8320: document return value of recv_into().
........
  r79828 | georg.brandl | 2010-04-06 14:33:44 +0000 (Di, 06 Apr 2010) | 1 line

  Add JP.
........
  r79862 | georg.brandl | 2010-04-06 20:27:59 +0000 (Di, 06 Apr 2010) | 1 line

  Fix syntax.
........
  r80067 | georg.brandl | 2010-04-14 08:53:38 +0000 (Mi, 14 Apr 2010) | 1 line

  #5341: typo.
........
  r80069 | georg.brandl | 2010-04-14 13:50:31 +0000 (Mi, 14 Apr 2010) | 1 line

  Add an x-ref to where the O_ constants are documented and move the SEEK_ constants after lseek().
........
  r80080 | georg.brandl | 2010-04-14 19:16:38 +0000 (Mi, 14 Apr 2010) | 1 line

  #8399: add note about Windows and O_BINARY.
........
  r80081 | georg.brandl | 2010-04-14 21:34:44 +0000 (Mi, 14 Apr 2010) | 1 line

  #5250: document __instancecheck__ and __subclasscheck__.  I hope the part about the class/metaclass distinction is understandable.
........
  r80084 | georg.brandl | 2010-04-14 21:46:45 +0000 (Mi, 14 Apr 2010) | 1 line

  Fix missing.
........
  r80432 | georg.brandl | 2010-04-24 08:56:58 +0000 (Sa, 24 Apr 2010) | 1 line

  Markup fixes.
........
  r80433 | georg.brandl | 2010-04-24 09:08:10 +0000 (Sa, 24 Apr 2010) | 1 line

  #7507: quote "!" in pipes.quote(); it is a special character for some shells.
........
2010-05-18 23:19:34 +00:00
Georg Brandl 324086f1c1 Merged revisions 79579-79580,79585-79587 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79579 | georg.brandl | 2010-04-02 08:34:41 +0000 (Fr, 02 Apr 2010) | 1 line

  Add 2.6.5.
........
  r79580 | georg.brandl | 2010-04-02 08:39:09 +0000 (Fr, 02 Apr 2010) | 1 line

  #2768: add a note on how to get a file descriptor.
........
  r79585 | georg.brandl | 2010-04-02 09:03:18 +0000 (Fr, 02 Apr 2010) | 1 line

  Remove col-spanning cells in logging docs.
........
  r79586 | georg.brandl | 2010-04-02 09:07:42 +0000 (Fr, 02 Apr 2010) | 1 line

  Document PyImport_ExecCodeModuleEx().
........
  r79587 | georg.brandl | 2010-04-02 09:11:49 +0000 (Fr, 02 Apr 2010) | 1 line

  #8012: clarification in generator glossary entry.
........
2010-05-18 23:13:04 +00:00
Giampaolo Rodolà 30aa46c910 Merged revisions 81294 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81294 | giampaolo.rodola | 2010-05-18 22:04:31 +0200 (mar, 18 mag 2010) | 1 line

  Fix issue #8573 (asyncore._strerror bug): fixed os.strerror typo; included NameError in the tuple of expected exception; added test case for asyncore._strerror.
........
2010-05-18 20:09:25 +00:00
Senthil Kumaran 4d1dc6125a Merged revisions 81286 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81286 | senthil.kumaran | 2010-05-18 19:10:23 +0530 (Tue, 18 May 2010) | 3 lines

  Doc Fix. Correct link to Zephyr ASDL Abstract page.
........
2010-05-18 13:44:50 +00:00
Senthil Kumaran 50706eb415 Merged revisions 81279 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81279 | senthil.kumaran | 2010-05-18 08:50:43 +0530 (Tue, 18 May 2010) | 3 lines

  Fix minor typo.
........
2010-05-18 03:23:43 +00:00
Antoine Pitrou 5de1594e28 Merged revisions 81275 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81275 | antoine.pitrou | 2010-05-17 21:56:59 +0200 (lun., 17 mai 2010) | 4 lines

  Issue #7079: Fix a possible crash when closing a file object while using
  it from another thread.  Patch by Daniel Stutzbach.
........
2010-05-17 20:00:52 +00:00
Tarek Ziadé 831755694a Merged revisions 81261 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81261 | tarek.ziade | 2010-05-17 12:54:43 +0200 (Mon, 17 May 2010) | 1 line

  upgraded distutils docs w.r.t. the manifest regeneration
........
2010-05-17 11:00:17 +00:00
Tarek Ziadé e728116357 Merged revisions 81255 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81255 | tarek.ziade | 2010-05-17 12:06:20 +0200 (Mon, 17 May 2010) | 1 line

  Fixed #8688: Distutils now recalculates MANIFEST everytime.
........
2010-05-17 10:26:15 +00:00
Antoine Pitrou b6e3e3ab92 Merged revisions 81241 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81241 | antoine.pitrou | 2010-05-17 01:11:46 +0200 (lun., 17 mai 2010) | 4 lines

  Clear the OpenSSL error queue each time an error is signalled.
  When the error queue is not emptied, strange things can happen on the next SSL call, depending on the OpenSSL version.
........
2010-05-16 23:14:34 +00:00
Antoine Pitrou ec0a3886ca Merged revisions 81229 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81229 | antoine.pitrou | 2010-05-16 16:16:56 +0200 (dim., 16 mai 2010) | 3 lines

  Document that SSL v2 is insecure.
........
2010-05-16 14:17:51 +00:00
Victor Stinner f10d6fb3d9 Merged revisions 81224 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81224 | victor.stinner | 2010-05-16 02:34:40 +0200 (dim., 16 mai 2010) | 4 lines

  Use with open() as fo: ... instead of try: fo = open(...) finally: fo.close()

  fo is not set if the open() fails.
........
2010-05-16 00:35:43 +00:00
Victor Stinner 8bdd22a7e6 Merged revisions 81220 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81220 | victor.stinner | 2010-05-16 00:55:28 +0200 (dim., 16 mai 2010) | 4 lines

  Use 4-spaces for indentation (instead of tabs) in pgen outputs

  Regenerate (reindent) Python/graminit.c
........
2010-05-15 22:58:41 +00:00
Victor Stinner ec2347614f Recorded merge of revisions 81213 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81213 | victor.stinner | 2010-05-16 00:19:27 +0200 (dim., 16 mai 2010) | 5 lines

  reindent _cursesmodule.c

  Use untabify.py + emacs (python3 mode) + manual editions for
  Py_BEGIN_ALLOW_THREADS / Py_END_ALLOW_THREADS
........
2010-05-15 22:26:41 +00:00
Victor Stinner 5b4d7ffaaa Recorded merge of revisions 81205 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81205 | victor.stinner | 2010-05-15 23:00:59 +0200 (sam., 15 mai 2010) | 2 lines

  NEWS: strip trailing spaces
........
2010-05-15 21:03:33 +00:00
Antoine Pitrou c400610321 Issue #7640: In the new `io` module, fix relative seek() for buffered
readable streams when the internal buffer isn't empty.  Patch by Pascal
Chambon.
2010-05-15 20:33:07 +00:00
Stefan Krah 6f1cfc1c12 Blocked revisions 81185 via svnmerge
........
  r81185 | stefan.krah | 2010-05-15 11:31:08 +0200 (Sat, 15 May 2010) | 4 lines

  If the timeout is exceeded, count the tests as skipped instead of just
  issuing a warning.
........
2010-05-15 09:37:54 +00:00
Stefan Krah 686e56bcf1 Use stderr instead of stdout for warning. 2010-05-15 09:34:50 +00:00
Victor Stinner f7b5def8b4 Merged revisions 81179 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81179 | victor.stinner | 2010-05-14 23:52:26 +0200 (ven., 14 mai 2010) | 2 lines

  Fix regression introduced by r81154 (Issue #5099, subprocess destructor)
........
2010-05-14 21:53:32 +00:00
Victor Stinner 7be6dae3f6 Merged revisions 81166 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81166 | victor.stinner | 2010-05-14 17:53:20 +0200 (ven., 14 mai 2010) | 4 lines

  Issue #8711: add paragraph titles to c-api/unicode.rst

  (Python2 doesn't have PyUnicode_DecodeFSDefault*() functions)
........
2010-05-14 15:55:12 +00:00
Victor Stinner 4f25ac7abd Merged revisions 81163 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81163 | victor.stinner | 2010-05-14 16:20:07 +0200 (ven., 14 mai 2010) | 2 lines

  Doc: replace PEP xxx by :pep:`xxx` to create a link on the PEP
........
2010-05-14 14:30:11 +00:00
Brett Cannon b565ac8776 Merged revisions 81154 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81154 | brett.cannon | 2010-05-13 17:21:48 -0700 (Thu, 13 May 2010) | 15 lines

  subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to
  interpreter shutdown semantics. Same issue goes for the methods that __del__
  called. Now all the methods capture the global objects it needs as default
  values to private parameters (could have stuck them on the class object itself,
  but since the objects have nothing directly to do with the class that seemed
  wrong).

  There is no test as making one that works is hard. This patch was
  verified against a consistently failing test in Mercurial's test suite, though,
  so it has been tested in some regard.

  Closes issue #5099. Thanks to Mary Stern for the bug report and Gabriel
  Genellina for writing another patch for the same issue and attempting to write
  a test.
........
2010-05-14 01:26:08 +00:00
Benjamin Peterson be6f086502 Merged revisions 81145 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81145 | benjamin.peterson | 2010-05-13 16:14:10 -0500 (Thu, 13 May 2010) | 1 line

  rip out mention of types.ListType #8703
........
2010-05-13 21:16:53 +00:00
Victor Stinner 3c7f430f15 Blocked revisions 81135,81137 via svnmerge
........
  r81135 | victor.stinner | 2010-05-13 18:18:14 +0200 (jeu., 13 mai 2010) | 6 lines

  Issue #8422, test_genericpath: skip the creation of a directory with an invalid
  UTF name on Mac OS X because the OS deny it (the name have to be a valid UTF8
  string).

  Merge r80163 from py3k branch.
........
  r81137 | victor.stinner | 2010-05-13 18:22:15 +0200 (jeu., 13 mai 2010) | 4 lines

  Fix verb tense in skip message.

  Ooops, merge also r80334 (patch by r.david.murray)
........
2010-05-13 16:24:45 +00:00
Senthil Kumaran b87d04fc96 Merged revisions 81130 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81130 | senthil.kumaran | 2010-05-13 08:55:21 +0530 (Thu, 13 May 2010) | 3 lines

  Fix Issue8657 - adding git and git+ssh as know schemes.
........
2010-05-13 03:32:26 +00:00
Mark Dickinson 838edd8bc6 Merged revisions 81126 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81126 | mark.dickinson | 2010-05-12 20:53:36 +0100 (Wed, 12 May 2010) | 1 line

  Fix unused variable in test_factorial.
........
2010-05-12 19:56:10 +00:00
Antoine Pitrou 96125cf170 Merged revisions 81115 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81115 | antoine.pitrou | 2010-05-12 16:02:34 +0200 (mer., 12 mai 2010) | 3 lines

  Improve _ssl.c formatting
........
2010-05-12 14:05:34 +00:00
Antoine Pitrou ca561f5e72 Merged revisions 81098 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81098 | antoine.pitrou | 2010-05-12 01:42:28 +0200 (mer., 12 mai 2010) | 5 lines

  Issue #8681: Make the zlib module's error messages more informative when
  the zlib itself doesn't give any detailed explanation.
........
2010-05-11 23:45:55 +00:00
Antoine Pitrou 33c5813a59 Merged revisions 81094 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81094 | antoine.pitrou | 2010-05-12 01:32:31 +0200 (mer., 12 mai 2010) | 6 lines

  Issue #8672: Add a zlib test ensuring that an incomplete stream can be
  handled by a decompressor object without errors (it returns incomplete
  uncompressed data).
........
2010-05-11 23:33:53 +00:00
Brian Curtin 59170e37bb Backport of r81088, plus the exposure of the previously undocumented
*ReflectionKey functions. Apparently that was not backported.

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

........
  r81088 | brian.curtin | 2010-05-11 14:13:13 -0500 (Tue, 11 May 2010) | 13 lines

  #8575 - Update and reorganize some _winreg contents.

  I've removed the hopeful note about a future higher-level module since
  it's been in there for quite a long time and nothing of the sort has
  come up. There are a few places where markup was added to cross-reference
  other sections, and many of the external links have been removed and now
  point to newly created sections containing previously undocumented
  information.

  The Value Types section was created and it's contents were taken from
  a function-specific area, since it applies to more than just that
  function. It fits in better with the other newly documented constants.
........
2010-05-11 19:32:26 +00:00
Mark Dickinson 7ceb497ae6 Merged revisions 81079 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81079 | mark.dickinson | 2010-05-11 14:05:30 +0100 (Tue, 11 May 2010) | 1 line

  Issue #8674: fix another bogus overflow check in audioop module.
........
2010-05-11 13:08:26 +00:00
Georg Brandl b377b0e2e4 Merged revisions 78581 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78581 | michael.foord | 2010-03-02 15:22:15 +0100 (Di, 02 Mär 2010) | 1 line

  Link correction in documentation.
........
2010-05-10 21:12:44 +00:00
Mark Dickinson 47e3bf26f0 Merged revisions 81045 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81045 | mark.dickinson | 2010-05-10 17:07:42 +0100 (Mon, 10 May 2010) | 3 lines

  Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop
  module.  Thanks Tomas Hoger for the patch.
........
2010-05-10 16:16:52 +00:00
Antoine Pitrou c7c96a90bc Recorded merge of revisions 81029 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines

  Untabify C files. Will watch buildbots.
........
2010-05-09 15:15:40 +00:00
Eric Smith ba32864b2d Merged revisions 81026 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81026 | eric.smith | 2010-05-09 10:04:59 -0400 (Sun, 09 May 2010) | 1 line

  Issue 8671: Whitespace fix.
........
2010-05-09 14:07:57 +00:00
Jean-Paul Calderone 0819b092d6 Merged revisions 81007 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81007 | jean-paul.calderone | 2010-05-08 16:06:02 -0400 (Sat, 08 May 2010) | 1 line

  Skip signal handler re-installation if it is not necessary.  Issue 8354.
........
2010-05-08 21:11:28 +00:00