1. 04 Nis, 2012 1 kayıt (commit)
  2. 05 Şub, 2012 1 kayıt (commit)
  3. 31 Eki, 2011 1 kayıt (commit)
  4. 03 Ock, 2011 2 kayıt (commit)
  5. 27 Ara, 2010 4 kayıt (commit)
  6. 26 Ara, 2010 2 kayıt (commit)
    • R. David Murray's avatar
      Merged revisions 87497 via svnmerge from · 6cb252fa
      R. David Murray yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87497 | r.david.murray | 2010-12-26 14:54:29 -0500 (Sun, 26 Dec 2010) | 7 lines
      
        #5258/#10642: print fn, line, traceback and continue when .pth file is broken
      
        If a .pth file contained an error, it could cause a traceback in site.py,
        terminating its processing.  In 2.7 and 3.2, the interpreter will then not
        start.  Previously, a message would print saying to use -v to get the
        traceback.  In either case, the traceback generated for a failed .pth file did
        not include the .pth filename, making it difficult to debug the problem.  Now
        site.py reports not only the .pth filename but also the line number causing the
        error, and just skips the remainder of the file.
      ........
      6cb252fa
    • R. David Murray's avatar
      #5258/#10642: print fn, line, traceback and continue when .pth file is broken · b4ca59b7
      R. David Murray yazdı
      If a .pth file contained an error, it could cause a traceback in site.py,
      terminating its processing.  In 2.7 and 3.2, the interpreter will then not
      start.  Previously, a message would print saying to use -v to get the
      traceback.  In either case, the traceback generated for a failed .pth file did
      not include the .pth filename, making it difficult to debug the problem.  Now
      site.py reports not only the .pth filename but also the line number causing the
      error, and just skips the remainder of the file.
      b4ca59b7
  7. 20 Kas, 2010 1 kayıt (commit)
  8. 01 Eyl, 2010 1 kayıt (commit)
  9. 17 Agu, 2010 1 kayıt (commit)
  10. 01 Agu, 2010 1 kayıt (commit)
  11. 14 May, 2010 1 kayıt (commit)
  12. 18 Nis, 2010 1 kayıt (commit)
  13. 17 Nis, 2010 1 kayıt (commit)
  14. 29 Ock, 2010 1 kayıt (commit)
  15. 23 Ock, 2010 1 kayıt (commit)
  16. 19 Ock, 2010 1 kayıt (commit)
  17. 01 Kas, 2009 1 kayıt (commit)
  18. 27 Eki, 2009 1 kayıt (commit)
  19. 18 Eki, 2009 1 kayıt (commit)
    • Nick Coghlan's avatar
      Note that a number of the changes listed below were not applicable to the Py3k… · 6ead552b
      Nick Coghlan yazdı
      Note that a number of the changes listed below were not applicable to the Py3k branch, and hence the corresponding
      files are unchanged in this checkin. This checkin is also the first time the environment checking in regrtest has
      been forward ported to the Py3k branch.
      
      This checkin causes test_xmlrpc to fail - see issue 7165 (it's a bug in the 3.x version of xmlrpc.server)
      I am also getting a failure in test_telnetlib, but it isn't clear yet if that is due to these changes.
      
      Recorded merge of revisions 75400-75401,75404,75406,75414,75416,75422,75425-75428,75435,75439,75441-75444,75447-75449,75451-75453,75455-75458,75460-75469,75471-75473,75475-75477,75479-75481,75483,75486-75489 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75400 | r.david.murray | 2009-10-14 23:58:07 +1000 (Wed, 14 Oct 2009) | 6 lines
      
        Enhanced Issue 7058 patch, which will not be backported.  Refactors the
        code, adds checks for stdin/out/err, cwd, and sys.path, and adds a new
        section in the summary for tests that modify the environment (thanks to
        Ezio Melotti for that suggestion).
      ........
        r75453 | nick.coghlan | 2009-10-17 16:33:05 +1000 (Sat, 17 Oct 2009) | 1 line
      
        Correctly restore sys.stdout in test_descr
      ........
        r75456 | nick.coghlan | 2009-10-17 17:30:40 +1000 (Sat, 17 Oct 2009) | 1 line
      
        Enhancement to the new environment checking code to print the changed items under -vv. Also includes a small tweak to allow underscores in the names of resources.
      ........
        r75457 | nick.coghlan | 2009-10-17 17:34:27 +1000 (Sat, 17 Oct 2009) | 1 line
      
        Formatting tweak so that before and after values are vertically aligned
      ........
        r75458 | nick.coghlan | 2009-10-17 18:21:21 +1000 (Sat, 17 Oct 2009) | 1 line
      
        Check and revert expected sys.path alterations
      ........
        r75461 | nick.coghlan | 2009-10-18 00:40:54 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Restore original sys.path when running TTK tests
      ........
        r75462 | nick.coghlan | 2009-10-18 01:09:41 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Don't invoke reload(sys) and use StringIO objects instead of real files to capture stdin and stdout when needed (ensures all sys attributes remain unmodified after test_xmlrpc runs)
      ........
        r75463 | nick.coghlan | 2009-10-18 01:23:08 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Revert changes made to environment in test_httpservers
      ........
        r75465 | nick.coghlan | 2009-10-18 01:45:52 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Move restoration of the os.environ object into the context manager where it belongs
      ........
        r75466 | nick.coghlan | 2009-10-18 01:48:16 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Also check and restore identity of sys.path, sys.argv and os.environ rather than just their values (this picked up a few more misbehaving tests)
      ........
        r75467 | nick.coghlan | 2009-10-18 01:57:42 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Avoid replacing existing modules and sys.path in import tests
      ........
        r75468 | nick.coghlan | 2009-10-18 02:19:51 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Don't replace sys.path in test_site
      ........
        r75481 | nick.coghlan | 2009-10-18 15:38:48 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Using CleanImport to revert a reload of the os module doesn't work due to function registrations in copy_reg. The perils of reloading modules even for tests...
      ........
        r75486 | nick.coghlan | 2009-10-18 20:29:10 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Silence a deprecation warning by using the appropriate replacement construct
      ........
        r75489 | nick.coghlan | 2009-10-18 20:56:21 +1000 (Sun, 18 Oct 2009) | 1 line
      
        Restore sys.path in test_tk
      ........
      6ead552b
  20. 20 Agu, 2009 1 kayıt (commit)
  21. 13 Agu, 2009 1 kayıt (commit)
  22. 30 Haz, 2009 1 kayıt (commit)
  23. 26 Nis, 2009 1 kayıt (commit)
  24. 28 Mar, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · e549ead8
      Benjamin Peterson yazdı
      Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70554 | benjamin.peterson | 2009-03-23 16:25:15 -0500 (Mon, 23 Mar 2009) | 1 line
      
        complain when there's no last exception
      ........
        r70588 | benjamin.peterson | 2009-03-24 17:56:32 -0500 (Tue, 24 Mar 2009) | 1 line
      
        fix newline issue in test summary
      ........
        r70589 | benjamin.peterson | 2009-03-24 18:07:07 -0500 (Tue, 24 Mar 2009) | 1 line
      
        another style nit
      ........
        r70598 | benjamin.peterson | 2009-03-25 16:24:04 -0500 (Wed, 25 Mar 2009) | 1 line
      
        add shorthands for expected failures and unexpected success
      ........
        r70605 | benjamin.peterson | 2009-03-26 11:32:23 -0500 (Thu, 26 Mar 2009) | 1 line
      
        remove uneeded function
      ........
        r70611 | benjamin.peterson | 2009-03-26 13:35:37 -0500 (Thu, 26 Mar 2009) | 1 line
      
        add much better tests for python version information parsing
      ........
        r70612 | benjamin.peterson | 2009-03-26 13:55:48 -0500 (Thu, 26 Mar 2009) | 1 line
      
        more and more implementations now support sys.subversion
      ........
        r70613 | benjamin.peterson | 2009-03-26 13:58:30 -0500 (Thu, 26 Mar 2009) | 1 line
      
        roll old test in with new one
      ........
        r70614 | benjamin.peterson | 2009-03-26 14:09:21 -0500 (Thu, 26 Mar 2009) | 1 line
      
        add support for PyPy
      ........
        r70615 | benjamin.peterson | 2009-03-26 14:58:18 -0500 (Thu, 26 Mar 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 15:05:50 -0500 (Thu, 26 Mar 2009) | 1 line
      
        rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
      ........
        r70617 | benjamin.peterson | 2009-03-26 15:17:27 -0500 (Thu, 26 Mar 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 15:48:25 -0500 (Thu, 26 Mar 2009) | 1 line
      
        remove test_support.TestSkipped and just use unittest.SkipTest
      ........
        r70619 | benjamin.peterson | 2009-03-26 15:49:40 -0500 (Thu, 26 Mar 2009) | 1 line
      
        fix naming
      ........
        r70620 | benjamin.peterson | 2009-03-26 16:10:30 -0500 (Thu, 26 Mar 2009) | 1 line
      
        fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
      ........
        r70621 | benjamin.peterson | 2009-03-26 16:11:16 -0500 (Thu, 26 Mar 2009) | 1 line
      
        must pass argument to get expected behavior ;)
      ........
        r70623 | benjamin.peterson | 2009-03-26 16:30:10 -0500 (Thu, 26 Mar 2009) | 1 line
      
        add missing import
      ........
        r70624 | benjamin.peterson | 2009-03-26 16:30:54 -0500 (Thu, 26 Mar 2009) | 1 line
      
        ** is required here
      ........
        r70626 | benjamin.peterson | 2009-03-26 16:40:29 -0500 (Thu, 26 Mar 2009) | 1 line
      
        update email tests to use SkipTest
      ........
        r70627 | benjamin.peterson | 2009-03-26 16:44:43 -0500 (Thu, 26 Mar 2009) | 1 line
      
        fix another name
      ........
      e549ead8
  25. 02 Tem, 2008 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · fea6a94b
      Benjamin Peterson yazdı
      Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,64425-64428 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64365 | raymond.hettinger | 2008-06-17 19:56:57 -0500 (Tue, 17 Jun 2008) | 1 line
      
        Fix double decref.
      ........
        r64370 | mark.dickinson | 2008-06-18 04:20:17 -0500 (Wed, 18 Jun 2008) | 2 lines
      
        Typo fix
      ........
        r64406 | andrew.kuchling | 2008-06-19 09:02:30 -0500 (Thu, 19 Jun 2008) | 1 line
      
        Only include update_lines_cols() function when it's actually going to be used
      ........
        r64408 | amaury.forgeotdarc | 2008-06-19 14:57:39 -0500 (Thu, 19 Jun 2008) | 2 lines
      
        test_macos can be skipped on non-mac platforms.
      ........
        r64409 | andrew.kuchling | 2008-06-19 15:33:31 -0500 (Thu, 19 Jun 2008) | 1 line
      
        Put threading in front of thread
      ........
        r64412 | amaury.forgeotdarc | 2008-06-19 16:17:12 -0500 (Thu, 19 Jun 2008) | 3 lines
      
        In test_site, correctly escape backslashes in path names.
        This allows the test to pass when the username begins with a lowercase 't'...
      ........
        r64416 | vinay.sajip | 2008-06-19 17:40:17 -0500 (Thu, 19 Jun 2008) | 2 lines
      
        Bug #3136: fileConfig()'s disabling of old loggers is now conditional via an optional disable_existing_loggers parameter, but the default value is such that the old behaviour is preserved.
        Thanks to Leandro Lucarella for the patch.
      ........
        r64417 | vinay.sajip | 2008-06-19 17:41:08 -0500 (Thu, 19 Jun 2008) | 1 line
      
        Updated with fix for #3136.
      ........
        r64420 | andrew.kuchling | 2008-06-19 21:05:57 -0500 (Thu, 19 Jun 2008) | 1 line
      
        Various items
      ........
        r64421 | andrew.kuchling | 2008-06-19 21:11:42 -0500 (Thu, 19 Jun 2008) | 1 line
      
        Fix comment typos
      ........
        r64425 | andrew.kuchling | 2008-06-20 06:39:54 -0500 (Fri, 20 Jun 2008) | 1 line
      
        Various items
      ........
        r64426 | mark.dickinson | 2008-06-20 09:53:43 -0500 (Fri, 20 Jun 2008) | 4 lines
      
        Issue #3004:  Minor fix to slice.indices().  slice(-10).indices(9) now
        returns (0, 0, 1) instead of (0, -1, 1), and slice(None, 10, -1).indices(10)
        returns (9, 9, -1) instead of (9, 10, -1).
      ........
        r64427 | mark.dickinson | 2008-06-20 10:17:41 -0500 (Fri, 20 Jun 2008) | 2 lines
      
        Fix outdated count of the number of new math module functions.
      ........
        r64428 | mark.dickinson | 2008-06-20 10:26:19 -0500 (Fri, 20 Jun 2008) | 2 lines
      
        Fix another typo in math_sum comment
      ........
      fea6a94b
  26. 20 May, 2008 1 kayıt (commit)
  27. 16 May, 2008 1 kayıt (commit)
    • Alexandre Vassalotti's avatar
      Merged revisions… · e9f305fd
      Alexandre Vassalotti yazdı
      Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,63229-63232,63234-63235,63237-63239,63241,63243-63246,63250-63254,63256-63259,63261,63263-63264,63266-63267,63269-63270,63272-63273,63275-63276,63278,63280-63281,63283-63284,63286-63287,63289-63290,63292-63293,63295-63296,63298-63299,63301-63302,63304-63305,63307,63309-63314,63316-63322,63324-63325,63327-63335,63337-63338,63340-63342,63344-63346,63348 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63208 | georg.brandl | 2008-05-13 15:04:54 -0400 (Tue, 13 May 2008) | 2 lines
      
        #2831: add start argument to enumerate(). Patch by Scott Dial and me.
      ........
        r63209 | marc-andre.lemburg | 2008-05-13 15:10:45 -0400 (Tue, 13 May 2008) | 3 lines
      
        Remove leftovers from reverted setuptools checkin (they were added in r45525).
      ........
        r63211 | georg.brandl | 2008-05-13 17:32:03 -0400 (Tue, 13 May 2008) | 2 lines
      
        Fix a refleak in the _warnings module.
      ........
        r63212 | andrew.kuchling | 2008-05-13 20:46:41 -0400 (Tue, 13 May 2008) | 1 line
      
        List all the removes and renamed modules
      ........
        r63214 | brett.cannon | 2008-05-13 21:09:40 -0400 (Tue, 13 May 2008) | 2 lines
      
        Rewrap some lines in test_py3kwarn.
      ........
        r63219 | georg.brandl | 2008-05-14 02:34:15 -0400 (Wed, 14 May 2008) | 2 lines
      
        Add NEWS entry for #2831.
      ........
        r63220 | neal.norwitz | 2008-05-14 02:47:56 -0400 (Wed, 14 May 2008) | 3 lines
      
        Fix "refleak" by restoring the tearDown method removed by accident (AFAICT)
        in r62788.
      ........
        r63221 | georg.brandl | 2008-05-14 03:18:22 -0400 (Wed, 14 May 2008) | 2 lines
      
        Fix another "refleak" by clearing the filters after test.
      ........
        r63222 | neal.norwitz | 2008-05-14 03:21:42 -0400 (Wed, 14 May 2008) | 5 lines
      
        Install the json package and tests as well as the lib2to3 tests
        so the tests work when run from an install directory.
        They are currently skipped on the daily runs (not from the buildbots)
        for checking refleaks, etc.
      ........
        r63256 | andrew.kuchling | 2008-05-14 21:10:24 -0400 (Wed, 14 May 2008) | 1 line
      
        Note some removals and a rename
      ........
        r63311 | brett.cannon | 2008-05-15 00:36:53 -0400 (Thu, 15 May 2008) | 2 lines
      
        Add a snippet for the deprecation directive for docs.
      ........
        r63313 | gregory.p.smith | 2008-05-15 00:56:18 -0400 (Thu, 15 May 2008) | 5 lines
      
        disable the crashing test.  I will also file a bug.  This crash does
        not appear to be a new bug, its just that the test coverage went up
        recently exposing it.  (I verified that by testing this test code on
        an older Modules/_bsddb.c)
      ........
        r63320 | georg.brandl | 2008-05-15 11:08:32 -0400 (Thu, 15 May 2008) | 2 lines
      
        #2863: add gen.__name__ and add this name to generator repr().
      ........
        r63324 | andrew.kuchling | 2008-05-15 16:07:39 -0400 (Thu, 15 May 2008) | 1 line
      
        Import class from distutils.cmd, not .core, to avoid circular import
      ........
        r63327 | alexandre.vassalotti | 2008-05-15 16:31:42 -0400 (Thu, 15 May 2008) | 2 lines
      
        Fixed typo in a doctest of test_genexps.
      ........
        r63332 | benjamin.peterson | 2008-05-15 18:34:33 -0400 (Thu, 15 May 2008) | 2 lines
      
        add Mac modules to the list of deprecated ones
      ........
        r63333 | benjamin.peterson | 2008-05-15 18:41:16 -0400 (Thu, 15 May 2008) | 2 lines
      
        fix typos in whatsnew
      ........
        r63348 | benjamin.peterson | 2008-05-15 22:24:49 -0400 (Thu, 15 May 2008) | 2 lines
      
        make test_platform a bit more assertive (We'll see what the buildbots say.)
      ........
      e9f305fd
  28. 06 May, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 62774-62775,62785,62787-62788 via svnmerge from · 8dc226fc
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r62774 | georg.brandl | 2008-05-06 19:11:42 +0200 (Tue, 06 May 2008) | 2 lines
      
        #2773: fix description of 'g' and 'G' formatting spec.
      ........
        r62775 | georg.brandl | 2008-05-06 19:20:54 +0200 (Tue, 06 May 2008) | 2 lines
      
        > != (!<).
      ........
        r62785 | benjamin.peterson | 2008-05-07 00:18:11 +0200 (Wed, 07 May 2008) | 2 lines
      
        Fix logic error in Python/_warnings.c and add a test to verify
      ........
        r62787 | benjamin.peterson | 2008-05-07 00:31:52 +0200 (Wed, 07 May 2008) | 2 lines
      
        Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning
      ........
        r62788 | christian.heimes | 2008-05-07 00:41:46 +0200 (Wed, 07 May 2008) | 1 line
      
        Implemented PEP 370
      ........
      8dc226fc
  29. 23 Şub, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 60990-61002 via svnmerge from · 05e8be17
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Removed duplicate Py_CHARMASK define.  It's already defined in Python.h.
      ........
        r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines
      
        #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.
        Remove automatic handling of datetime.date and datetime.time.
        This breaks backward compatibility, but python-dev discussion was strongly
        against this automatic conversion; see the bug for a link.
      ........
        r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #835521: Add index entries for various pickle-protocol methods and attributes
      ........
        r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1433694: minidom's .normalize() failed to set .nextSibling for last element.
        Fix by Malte Helmert
      ........
        r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #2167 from calvin: Remove unused imports
      ........
        r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #1957: syslogmodule: Release GIL when calling syslog(3)
      ........
        r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Issue #2051 and patch from Alexander Belopolsky:
        Permission for pyc and pyo files are inherited from the py file.
      ........
      05e8be17
  30. 02 Ara, 2007 1 kayıt (commit)
  31. 11 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; · cc2b0161
      Guido van Rossum yazdı
        and .keys(), .items(), .values() return dict views.
      
      The dict views aren't fully functional yet; in particular, they can't
      be compared to sets yet.  but they are useful as "iterator wells".
      
      There are still 27 failing unit tests; I expect that many of these
      have fairly trivial fixes, but there are so many, I could use help.
      cc2b0161
  32. 09 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum yazdı
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  33. 25 Agu, 2006 1 kayıt (commit)
  34. 18 Agu, 2006 1 kayıt (commit)
  35. 27 May, 2005 1 kayıt (commit)