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

georg.brandl python-checkins at python.org
Wed May 19 01:58:07 CEST 2010


Author: georg.brandl
Date: Wed May 19 01:58:06 2010
New Revision: 81313

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


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


More information about the Python-checkins mailing list