1. 23 Eyl, 2010 1 kayıt (commit)
  2. 02 Tem, 2010 1 kayıt (commit)
  3. 01 Tem, 2010 1 kayıt (commit)
  4. 05 Haz, 2010 1 kayıt (commit)
  5. 02 Nis, 2010 1 kayıt (commit)
    • Florent Xicluna's avatar
      (partially) · 41fe6155
      Florent Xicluna yazdı
      Merged revisions 79534,79537,79539,79558,79606 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r79534 | florent.xicluna | 2010-03-31 23:21:54 +0200 (mer, 31 mar 2010) | 2 lines
      
        Fix test for xml.etree when using a non-ascii path.  And use check_warnings instead of catch_warnings.
      ........
        r79537 | florent.xicluna | 2010-03-31 23:40:32 +0200 (mer, 31 mar 2010) | 2 lines
      
        Fix typo
      ........
        r79539 | florent.xicluna | 2010-04-01 00:01:03 +0200 (jeu, 01 avr 2010) | 2 lines
      
        Replace catch_warnings with check_warnings when it makes sense.  Use assertRaises context manager to simplify some tests.
      ........
        r79558 | florent.xicluna | 2010-04-01 20:17:09 +0200 (jeu, 01 avr 2010) | 2 lines
      
        #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote.
      ........
        r79606 | florent.xicluna | 2010-04-02 19:26:42 +0200 (ven, 02 avr 2010) | 2 lines
      
        Backport some robotparser test and skip the test if the external resource is not available.
      ........
      41fe6155
  6. 21 Mar, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 21896a33
      Benjamin Peterson yazdı
      Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77952 | mark.dickinson | 2010-02-03 10:50:14 -0600 (Wed, 03 Feb 2010) | 1 line
      
        Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).
      ........
        r78030 | benjamin.peterson | 2010-02-06 14:14:10 -0600 (Sat, 06 Feb 2010) | 1 line
      
        check type_getattro for correctness in a descriptor corner case
      ........
        r78102 | andrew.kuchling | 2010-02-07 19:35:35 -0600 (Sun, 07 Feb 2010) | 1 line
      
        Move distutils into its own subsection; add various items
      ........
        r78104 | andrew.kuchling | 2010-02-08 07:22:24 -0600 (Mon, 08 Feb 2010) | 1 line
      
        Add two items; move a subsection
      ........
        r78107 | antoine.pitrou | 2010-02-08 14:25:47 -0600 (Mon, 08 Feb 2010) | 3 lines
      
        Clarify and correct description for ccbench and iobench.
      ........
        r78206 | r.david.murray | 2010-02-16 11:55:26 -0600 (Tue, 16 Feb 2010) | 3 lines
      
        Make the references to Popen in the description of Call
        and check_call into links.
      ........
        r78216 | andrew.kuchling | 2010-02-18 08:16:48 -0600 (Thu, 18 Feb 2010) | 1 line
      
        Add various items
      ........
        r78296 | andrew.kuchling | 2010-02-21 20:08:45 -0600 (Sun, 21 Feb 2010) | 1 line
      
        Re-word
      ........
        r78297 | andrew.kuchling | 2010-02-21 20:29:10 -0600 (Sun, 21 Feb 2010) | 1 line
      
        #7076: mention SystemRandom class near start of the module docs; reword change description for clarity.  Noted by Shawn Ligocki.
      ........
        r78328 | jack.diederich | 2010-02-22 12:17:16 -0600 (Mon, 22 Feb 2010) | 1 line
      
        fixes issue #7530, serve_forever()
      ........
        r78331 | andrew.kuchling | 2010-02-22 12:38:23 -0600 (Mon, 22 Feb 2010) | 1 line
      
        Fix comment typo
      ........
        r78332 | andrew.kuchling | 2010-02-22 12:42:07 -0600 (Mon, 22 Feb 2010) | 2 lines
      
        #7627: MH.remove() would fail if the MH mailbox was locked;
        it would call _unlock_file() and pass it a closed file object.  Noted by Rob Austein.
      ........
        r78336 | jack.diederich | 2010-02-22 13:55:22 -0600 (Mon, 22 Feb 2010) | 1 line
      
        fixes issue #1522237, bad init check in _threading_local
      ........
        r78339 | jack.diederich | 2010-02-22 15:27:38 -0600 (Mon, 22 Feb 2010) | 1 line
      
        * fix issue#7476
      ........
        r78343 | andrew.kuchling | 2010-02-22 16:48:41 -0600 (Mon, 22 Feb 2010) | 10 lines
      
        #2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c.
        Noted by Joseph Armbruster; patch by Jessica McKellar.
      
        The original code was 'for (;;) {...}', where ... ended
        with a 'return -2' statement and did not contain a 'break' or 'continue'
        statement.  Therefore, the body of the loop is always executed once.
      
        Once upon a time there was a 'continue' in the loop, but it was removed in
        rev36346, committed by mwh on Wed Jul 7 17:44:12 2004.
      ........
        r78378 | jack.diederich | 2010-02-23 11:23:30 -0600 (Tue, 23 Feb 2010) | 1 line
      
        fixup markup error
      ........
        r78379 | jack.diederich | 2010-02-23 13:34:06 -0600 (Tue, 23 Feb 2010) | 1 line
      
         issue#6442 use in operator instead of has_key
      ........
        r78415 | dirkjan.ochtman | 2010-02-23 22:00:52 -0600 (Tue, 23 Feb 2010) | 1 line
      
        Issue #7733: add explicit reference in asyncore docs.
      ........
        r78559 | andrew.kuchling | 2010-03-01 13:45:21 -0600 (Mon, 01 Mar 2010) | 1 line
      
        #7637: update discussion of minidom.unlink() and garbage collection
      ........
        r78717 | benjamin.peterson | 2010-03-05 21:13:33 -0600 (Fri, 05 Mar 2010) | 1 line
      
        settscdump is definitely an implementation detail
      ........
        r78791 | andrew.kuchling | 2010-03-08 06:00:39 -0600 (Mon, 08 Mar 2010) | 1 line
      
        Add various items
      ........
      21896a33
  7. 14 Mar, 2010 1 kayıt (commit)
  8. 24 Şub, 2010 1 kayıt (commit)
  9. 03 Şub, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 5e55b3e2
      Benjamin Peterson yazdı
      Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,77739,77858,77887,77889 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77484 | skip.montanaro | 2010-01-13 19:12:34 -0600 (Wed, 13 Jan 2010) | 4 lines
      
        Update PyEval_EvalFrame to PyEval_EvalFrameEx.  This looks to have been done
        partially before.  Also add a comment describing how this might have to work
        with different versions of the interpreter.
      ........
        r77487 | ezio.melotti | 2010-01-14 05:34:10 -0600 (Thu, 14 Jan 2010) | 1 line
      
        Fixed typo
      ........
        r77561 | georg.brandl | 2010-01-17 02:42:30 -0600 (Sun, 17 Jan 2010) | 1 line
      
        #7699: improve datetime docs: straightforward linking to strftime/strptime section, mark classmethods as such.
      ........
        r77570 | georg.brandl | 2010-01-17 06:14:42 -0600 (Sun, 17 Jan 2010) | 1 line
      
        Add note about usage of STRINGLIB_EMPTY.
      ........
        r77593 | georg.brandl | 2010-01-17 17:33:53 -0600 (Sun, 17 Jan 2010) | 1 line
      
        Fix internal reference.
      ........
        r77603 | benjamin.peterson | 2010-01-18 17:07:56 -0600 (Mon, 18 Jan 2010) | 8 lines
      
        data descriptors do not override the class dictionary if __get__ is not defined
      
        Adjust documentation and add a test to verify this behavior.
      
        See http://mail.python.org/pipermail/python-dev/2010-January/095637.html for
        discussion.
      ........
        r77608 | gregory.p.smith | 2010-01-19 02:19:03 -0600 (Tue, 19 Jan 2010) | 6 lines
      
        Do not compile stubs for the sha2 series hashes in the openssl hashlib
        module when the openssl version is too old to support them.  That
        leads both compiled code bloat and to unittests attempting to test
        implementations that don't exist for comparison purposes on such
        platforms.
      ........
        r77667 | mark.dickinson | 2010-01-21 12:32:27 -0600 (Thu, 21 Jan 2010) | 1 line
      
        Add two more test_strtod test values.
      ........
        r77702 | georg.brandl | 2010-01-23 02:43:31 -0600 (Sat, 23 Jan 2010) | 1 line
      
        #7762: fix refcount annotation of PyUnicode_Tailmatch().
      ........
        r77703 | georg.brandl | 2010-01-23 02:47:54 -0600 (Sat, 23 Jan 2010) | 1 line
      
        #7725: fix referencing issue.
      ........
        r77739 | benjamin.peterson | 2010-01-24 21:52:52 -0600 (Sun, 24 Jan 2010) | 1 line
      
        mention from_float() in error message
      ........
        r77858 | georg.brandl | 2010-01-30 11:57:48 -0600 (Sat, 30 Jan 2010) | 1 line
      
        #7802: fix invalid example (heh).
      ........
        r77887 | georg.brandl | 2010-01-31 12:51:49 -0600 (Sun, 31 Jan 2010) | 5 lines
      
        Fix-up ftplib documentation:
        move exception descriptions to toplevel, not inside a class
        remove attribution in "versionadded"
        spell and grammar check docstring of FTP_TLS
      ........
        r77889 | michael.foord | 2010-01-31 13:59:26 -0600 (Sun, 31 Jan 2010) | 1 line
      
        Minor modification to unittest documentation.
      ........
      5e55b3e2
  10. 24 Ock, 2010 1 kayıt (commit)
  11. 23 Ock, 2010 1 kayıt (commit)
  12. 19 Ock, 2010 1 kayıt (commit)
  13. 04 Ock, 2010 1 kayıt (commit)
  14. 30 Ara, 2009 1 kayıt (commit)
  15. 05 Ara, 2009 1 kayıt (commit)
  16. 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
  17. 11 Eki, 2009 1 kayıt (commit)
  18. 11 Eyl, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 8719ad5d
      Benjamin Peterson yazdı
      Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r74277 | sean.reifschneider | 2009-08-01 18:54:55 -0500 (Sat, 01 Aug 2009) | 3 lines
      
        - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with
          NUL: Bogus TypeError detail string.
      ........
        r74321 | guilherme.polo | 2009-08-05 11:51:41 -0500 (Wed, 05 Aug 2009) | 1 line
      
        Easier reference to find (at least while svn continues being used).
      ........
        r74323 | guilherme.polo | 2009-08-05 18:48:26 -0500 (Wed, 05 Aug 2009) | 1 line
      
        Typo.
      ........
        r74326 | jesse.noller | 2009-08-05 21:05:56 -0500 (Wed, 05 Aug 2009) | 1 line
      
        Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address
      ........
        r74355 | gregory.p.smith | 2009-08-12 12:02:37 -0500 (Wed, 12 Aug 2009) | 2 lines
      
        comment typo fix
      ........
        r74465 | vinay.sajip | 2009-08-15 18:23:12 -0500 (Sat, 15 Aug 2009) | 1 line
      
        Added section on logging to one file from multiple processes.
      ........
        r74467 | vinay.sajip | 2009-08-15 18:34:47 -0500 (Sat, 15 Aug 2009) | 1 line
      
        Refined section on logging to one file from multiple processes.
      ........
        r74488 | vinay.sajip | 2009-08-17 08:14:37 -0500 (Mon, 17 Aug 2009) | 1 line
      
        Further refined section on logging to one file from multiple processes.
      ........
        r74492 | r.david.murray | 2009-08-17 14:26:49 -0500 (Mon, 17 Aug 2009) | 2 lines
      
        Issue 6685: 'toupper' -> 'upper' in cgi doc example explanation.
      ........
        r74513 | skip.montanaro | 2009-08-18 09:37:52 -0500 (Tue, 18 Aug 2009) | 1 line
      
        missing module ref (issue6723)
      ........
        r74531 | vinay.sajip | 2009-08-20 17:04:32 -0500 (Thu, 20 Aug 2009) | 1 line
      
        Added section on exceptions raised during logging.
      ........
        r74549 | benjamin.peterson | 2009-08-24 12:42:36 -0500 (Mon, 24 Aug 2009) | 1 line
      
        fix pdf building by teaching latex the right encoding package
      ........
        r74553 | r.david.murray | 2009-08-26 20:04:59 -0500 (Wed, 26 Aug 2009) | 2 lines
      
        Remove leftover text from end of sentence.
      ........
        r74625 | benjamin.peterson | 2009-09-01 17:27:57 -0500 (Tue, 01 Sep 2009) | 1 line
      
        remove the check that classmethod's argument is a callable
      ........
        r74632 | georg.brandl | 2009-09-03 02:27:26 -0500 (Thu, 03 Sep 2009) | 1 line
      
        #6828: fix wrongly highlighted blocks.
      ........
        r74643 | georg.brandl | 2009-09-04 01:59:20 -0500 (Fri, 04 Sep 2009) | 2 lines
      
        Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module.
      ........
        r74644 | georg.brandl | 2009-09-04 02:55:14 -0500 (Fri, 04 Sep 2009) | 1 line
      
        #5047: remove Monterey support from configure.
      ........
        r74647 | georg.brandl | 2009-09-04 03:17:04 -0500 (Fri, 04 Sep 2009) | 2 lines
      
        Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented.
      ........
        r74652 | georg.brandl | 2009-09-04 06:25:37 -0500 (Fri, 04 Sep 2009) | 1 line
      
        #6756: add some info about the "acct" parameter.
      ........
        r74666 | georg.brandl | 2009-09-05 04:04:09 -0500 (Sat, 05 Sep 2009) | 1 line
      
        #6841: remove duplicated word.
      ........
        r74671 | georg.brandl | 2009-09-05 11:47:17 -0500 (Sat, 05 Sep 2009) | 1 line
      
        #6843: add link from filterwarnings to where the meaning of the arguments is covered.
      ........
        r74727 | benjamin.peterson | 2009-09-08 18:04:22 -0500 (Tue, 08 Sep 2009) | 1 line
      
        #6865 fix ref counting in initialization of pwd module
      ........
        r74739 | georg.brandl | 2009-09-11 02:55:20 -0500 (Fri, 11 Sep 2009) | 1 line
      
        Move function back to its section.
      ........
      8719ad5d
  19. 30 Haz, 2009 1 kayıt (commit)
  20. 28 Haz, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 72912,72920,72940 via svnmerge from · 876b2f28
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r72912 | benjamin.peterson | 2009-05-25 08:13:44 -0500 (Mon, 25 May 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 15:12:57 -0500 (Mon, 25 May 2009) | 1 line
      
        take into account the fact that SETUP_WITH pushes a finally block
      ........
        r72940 | benjamin.peterson | 2009-05-26 07:49:59 -0500 (Tue, 26 May 2009) | 1 line
      
        teach the peepholer about SETUP_WITH
      ........
      876b2f28
  21. 27 May, 2009 1 kayıt (commit)
  22. 25 May, 2009 1 kayıt (commit)
  23. 16 May, 2009 1 kayıt (commit)
  24. 09 May, 2009 2 kayıt (commit)
  25. 08 May, 2009 3 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 25c95f12
      Benjamin Peterson yazdı
      Merged revisions 70768,71657,71721,71729,71794,71976,72036-72037,72079,72085,72131-72134,72191,72197-72198,72219,72221,72225,72303,72434,72467,72476 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70768 | andrew.kuchling | 2009-03-30 17:29:15 -0500 (Mon, 30 Mar 2009) | 1 line
      
        Typo fixes
      ........
        r71657 | vinay.sajip | 2009-04-16 14:07:37 -0500 (Thu, 16 Apr 2009) | 1 line
      
        Issue #5768: Change to Unicode output logic and test case for same.
      ........
        r71721 | benjamin.peterson | 2009-04-18 14:26:19 -0500 (Sat, 18 Apr 2009) | 1 line
      
        fix a few nits in unittest.py #5771
      ........
        r71729 | benjamin.peterson | 2009-04-18 16:03:10 -0500 (Sat, 18 Apr 2009) | 1 line
      
        move test to a more appropiate one
      ........
        r71794 | vinay.sajip | 2009-04-22 07:10:47 -0500 (Wed, 22 Apr 2009) | 2 lines
      
        Issue #5170: Fixed regression caused when fixing #5768.
      ........
        r71976 | mark.dickinson | 2009-04-26 14:54:55 -0500 (Sun, 26 Apr 2009) | 2 lines
      
        Fix typo in function name
      ........
        r72036 | georg.brandl | 2009-04-27 12:04:23 -0500 (Mon, 27 Apr 2009) | 1 line
      
        #5848: small unittest doc patch.
      ........
        r72037 | georg.brandl | 2009-04-27 12:09:53 -0500 (Mon, 27 Apr 2009) | 1 line
      
        #5840: dont claim we dont support TLS.
      ........
        r72079 | r.david.murray | 2009-04-28 14:02:55 -0500 (Tue, 28 Apr 2009) | 2 lines
      
        Remove spurious 'u'.
      ........
        r72085 | georg.brandl | 2009-04-28 16:48:35 -0500 (Tue, 28 Apr 2009) | 1 line
      
        Make the doctests in the docs pass, except for those in the turtle module.
      ........
        r72131 | benjamin.peterson | 2009-04-29 17:43:35 -0500 (Wed, 29 Apr 2009) | 1 line
      
        fix test_shutil on ZFS #5676
      ........
        r72132 | georg.brandl | 2009-04-29 17:44:07 -0500 (Wed, 29 Apr 2009) | 1 line
      
        #5878: fix repr of re object.
      ........
        r72133 | benjamin.peterson | 2009-04-29 17:44:15 -0500 (Wed, 29 Apr 2009) | 1 line
      
        make sure mode is removable while cleaning up test droppings
      ........
        r72134 | benjamin.peterson | 2009-04-29 19:06:33 -0500 (Wed, 29 Apr 2009) | 1 line
      
        make sure to close file
      ........
        r72191 | michael.foord | 2009-05-02 06:43:06 -0500 (Sat, 02 May 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 11:24:37 -0500 (Sat, 02 May 2009) | 1 line
      
        don't let sys.argv be used in the tests
      ........
        r72198 | andrew.kuchling | 2009-05-02 12:12:15 -0500 (Sat, 02 May 2009) | 1 line
      
        Add items
      ........
        r72219 | michael.foord | 2009-05-02 15:15:05 -0500 (Sat, 02 May 2009) | 8 lines
      
        Add addCleanup and doCleanups to unittest.TestCase.
      
        Closes issue 5679.
      
        Michael Foord
      ........
        r72221 | benjamin.peterson | 2009-05-02 15:26:53 -0500 (Sat, 02 May 2009) | 1 line
      
        add myself
      ........
        r72225 | michael.foord | 2009-05-02 17:43:34 -0500 (Sat, 02 May 2009) | 1 line
      ........
        r72303 | benjamin.peterson | 2009-05-04 19:55:24 -0500 (Mon, 04 May 2009) | 1 line
      
        using sys._getframe(x), where x > 0 doesnt' work on IronPython
      ........
        r72434 | r.david.murray | 2009-05-07 13:09:58 -0500 (Thu, 07 May 2009) | 2 lines
      
        Pre-opened test file needs to be opened in binary mode.
      ........
        r72467 | georg.brandl | 2009-05-08 07:17:34 -0500 (Fri, 08 May 2009) | 1 line
      
        Fix name.
      ........
        r72476 | thomas.heller | 2009-05-08 15:09:40 -0500 (Fri, 08 May 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.
      ........
      25c95f12
    • Benjamin Peterson's avatar
      Merged revisions 72474 via svnmerge from · 8a282d17
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r72474 | benjamin.peterson | 2009-05-08 12:59:29 -0500 (Fri, 08 May 2009) | 1 line
      
        fix this test
      ........
      8a282d17
    • Benjamin Peterson's avatar
      Merged revisions 72461 via svnmerge from · 224205fd
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r72461 | benjamin.peterson | 2009-05-07 22:06:00 -0500 (Thu, 07 May 2009) | 1 line
      
        add _PyObject_LookupSpecial to handle fetching special method lookup
      ........
      224205fd
  26. 25 Nis, 2009 1 kayıt (commit)
  27. 18 Nis, 2009 1 kayıt (commit)
  28. 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
  29. 04 Mar, 2009 1 kayıt (commit)
    • Benjamin Peterson's avatar
      merge the io-c branch: C implementation of the io module · 4fa88fa0
      Benjamin Peterson yazdı
      The main io module now uses the C implementation.  The Python one still exists
      in Lib/_pyio.py for ease of testing new features and usefulness to other
      implementers.
      
      The rewrite was done by Antoine Pitrou and Amaury Forgeot d'Arc.  I was slightly
      helpful at the end. :)
      
      
      Following are the log messages from the io-c branch:
      
      Merged revisions 68683-68685,68687-68689,68693,68704,68741-68743,68745,68747,68752-68754,68756,68758,68812,68816-68817,68820-68822,68824-68825,68828,68876-68877,69037,69044,69104,69115,69194,69626-69629,69636,69638,69641-69642,69644-69654,69656-69661,69671,69677,69812-69815,69817,69827-69830,69839,69841-69845,69848,69850,69852,69854,69860,69865-69866,69868,69872-69873,69885,69888,69891-69893,69911,69913-69916,69963,70033,70035,70038,70041-70048,70067-70070,70075,70112,70133,70135,70140 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/branches/io-c
      
      ........
        r68683 | antoine.pitrou | 2009-01-17 17:13:48 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        Merge in changes from the io-c sandbox. Tests will follow in separate commits.
      ........
        r68684 | antoine.pitrou | 2009-01-17 17:17:26 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        Fixes and additions to test_io.py
      ........
        r68685 | antoine.pitrou | 2009-01-17 17:22:04 -0600 (Sat, 17 Jan 2009) | 1 line
      
        Fix test_fileio
      ........
        r68687 | antoine.pitrou | 2009-01-17 17:35:11 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        Add dependency to _iomodule.h for the various C sources
      ........
        r68688 | antoine.pitrou | 2009-01-17 17:38:18 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        These precautions are not needed anymore!
      ........
        r68689 | antoine.pitrou | 2009-01-17 17:41:48 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        Fix another test
      ........
        r68693 | antoine.pitrou | 2009-01-17 17:49:58 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        Fix test_uu (which was using private attributes of TextIOWrapper)
      ........
        r68704 | antoine.pitrou | 2009-01-17 18:45:29 -0600 (Sat, 17 Jan 2009) | 3 lines
      
        Most io sources are Py_ssize_t-clean (I don't know about bytesio and stringio)
      ........
        r68741 | antoine.pitrou | 2009-01-18 15:20:30 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Check return type in TextIOWrapper.__next__
      ........
        r68742 | antoine.pitrou | 2009-01-18 15:28:48 -0600 (Sun, 18 Jan 2009) | 4 lines
      
        Make binary buffered readline and iteration much faster
        (8x as fast as the IOBase generic implementation)
      ........
        r68743 | antoine.pitrou | 2009-01-18 15:47:47 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Reinsert test_io_after_close (was removed by mistake)
      ........
        r68745 | antoine.pitrou | 2009-01-18 16:16:06 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Add read, read1 and write methods to BufferedIOBase
      ........
        r68747 | antoine.pitrou | 2009-01-18 16:35:58 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Kill test failure
      ........
        r68752 | amaury.forgeotdarc | 2009-01-18 17:05:43 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Fix a segfault when e.g a BufferedReader is created with a FileIO in
        read mode.
      ........
        r68753 | antoine.pitrou | 2009-01-18 17:13:09 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Add truncate() to text IO objects
      ........
        r68754 | antoine.pitrou | 2009-01-18 17:51:08 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Remove IOBase.__del__ and replace it with custom code with tp_dealloc
      ........
        r68756 | antoine.pitrou | 2009-01-18 18:10:16 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        Remove irrelevant comment.
      ........
        r68758 | antoine.pitrou | 2009-01-18 18:36:16 -0600 (Sun, 18 Jan 2009) | 3 lines
      
        in importlib:_fileio._FileIO -> _io.FileIO
      ........
        r68812 | antoine.pitrou | 2009-01-20 14:15:51 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Add garbage collection support to FileIO objects
      ........
        r68816 | antoine.pitrou | 2009-01-20 14:56:28 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Add GC support to Buffered and Text IO objects
      ........
        r68817 | antoine.pitrou | 2009-01-20 15:19:45 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Add some file headers
      ........
        r68820 | antoine.pitrou | 2009-01-20 15:29:59 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Add class TextIOBase
      ........
        r68821 | antoine.pitrou | 2009-01-20 15:36:16 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Add properties to TextIOBase
      ........
        r68822 | antoine.pitrou | 2009-01-20 15:41:19 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Disable the pure Python TextIOBase class, and inject C the implementation instead
      ........
        r68824 | antoine.pitrou | 2009-01-20 16:36:28 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Fix two leaks
      ........
        r68825 | antoine.pitrou | 2009-01-20 16:38:29 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        FileIO.name is just a plain attribute, we can set it directly
      ........
        r68828 | antoine.pitrou | 2009-01-20 17:06:33 -0600 (Tue, 20 Jan 2009) | 3 lines
      
        Speed up closed checks on text IO objects. Good for a 25% speedup on small ops.
      ........
        r68876 | antoine.pitrou | 2009-01-23 17:01:25 -0600 (Fri, 23 Jan 2009) | 3 lines
      
        Two typos
      ........
        r68877 | antoine.pitrou | 2009-01-23 18:13:20 -0600 (Fri, 23 Jan 2009) | 3 lines
      
        Remove two unused functions
      ........
        r69037 | amaury.forgeotdarc | 2009-01-27 17:10:25 -0600 (Tue, 27 Jan 2009) | 2 lines
      
        Update the win32 project files
      ........
        r69044 | antoine.pitrou | 2009-01-27 18:51:07 -0600 (Tue, 27 Jan 2009) | 3 lines
      
        Improve heuristic in IncrementalNewlineDecoder + some micro-optimizations
      ........
        r69104 | antoine.pitrou | 2009-01-29 15:23:42 -0600 (Thu, 29 Jan 2009) | 3 lines
      
        Fix some crashers found by Victor
      ........
        r69115 | hirokazu.yamamoto | 2009-01-29 20:36:28 -0600 (Thu, 29 Jan 2009) | 1 line
      
        Updated VC6 project file.
      ........
        r69194 | antoine.pitrou | 2009-02-01 16:57:18 -0600 (Sun, 01 Feb 2009) | 3 lines
      
        Fix downcasting warnings in 32-bit mode with 64-bit offsets (Windows)
      ........
        r69626 | benjamin.peterson | 2009-02-14 17:33:34 -0600 (Sat, 14 Feb 2009) | 1 line
      
        only catch AttributeError and UnsupportedOperation
      ........
        r69627 | benjamin.peterson | 2009-02-14 21:35:28 -0600 (Sat, 14 Feb 2009) | 1 line
      
        give the IO module its own state and store the os and locale modules in it
      ........
        r69628 | benjamin.peterson | 2009-02-14 22:08:32 -0600 (Sat, 14 Feb 2009) | 1 line
      
        put interned strings in the module state structure
      ........
        r69629 | benjamin.peterson | 2009-02-14 22:15:29 -0600 (Sat, 14 Feb 2009) | 1 line
      
        put UnsupportedOperation in the module state
      ........
        r69636 | benjamin.peterson | 2009-02-15 08:31:42 -0600 (Sun, 15 Feb 2009) | 1 line
      
        dealloc unsupported_operation
      ........
        r69638 | benjamin.peterson | 2009-02-15 09:24:45 -0600 (Sun, 15 Feb 2009) | 1 line
      
        actually test the C implementation
      ........
        r69641 | benjamin.peterson | 2009-02-15 10:12:37 -0600 (Sun, 15 Feb 2009) | 5 lines
      
        make interned strings globals again ;(
      
        putting them in the module state was asking for trouble when the module
        was dealloced before the classes in it were
      ........
        r69642 | benjamin.peterson | 2009-02-15 10:19:45 -0600 (Sun, 15 Feb 2009) | 1 line
      
        actually test the python implementations
      ........
        r69644 | antoine.pitrou | 2009-02-15 11:59:30 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix memory leak in destructor when a Python class inherits from IOBase (or an IOBase-derived type)
      ........
        r69645 | antoine.pitrou | 2009-02-15 12:23:26 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Add a warning about the embarassing state of IOBase finalization
      ........
        r69646 | antoine.pitrou | 2009-02-15 13:14:42 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix opening of 8-bit filenames with FileIO
      ........
        r69647 | antoine.pitrou | 2009-02-15 13:20:22 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix leak in FileIO constructor
      ........
        r69648 | antoine.pitrou | 2009-02-15 13:58:16 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix some refleaks
      ........
        r69649 | antoine.pitrou | 2009-02-15 14:05:13 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix a leak in IOBase.writelines
      ........
        r69650 | antoine.pitrou | 2009-02-15 14:11:56 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix memory leak in BufferedWriter.truncate
      ........
        r69651 | antoine.pitrou | 2009-02-15 14:25:34 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix a leak in TextIOWrapper.seek
      ........
        r69652 | antoine.pitrou | 2009-02-15 14:26:28 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Unify implementations of truncate for buffered objects
      ........
        r69653 | antoine.pitrou | 2009-02-15 15:15:15 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Fix more leaks in TextIOWrapper
      ........
        r69654 | antoine.pitrou | 2009-02-15 15:21:57 -0600 (Sun, 15 Feb 2009) | 3 lines
      
        Smaller chunk size for a faster test
      ........
        r69656 | benjamin.peterson | 2009-02-15 17:29:48 -0600 (Sun, 15 Feb 2009) | 1 line
      
        braces make this much clearer
      ........
        r69657 | benjamin.peterson | 2009-02-15 17:46:07 -0600 (Sun, 15 Feb 2009) | 1 line
      
        use the correct macro
      ........
        r69658 | antoine.pitrou | 2009-02-15 19:38:59 -0600 (Sun, 15 Feb 2009) | 5 lines
      
        Fix crash in test_urllib2_localnet in debug mode. It was due to an HTTPResponse
        object being revived when calling its close() method in IOBase's tp_dealloc.
        _PyIOBase_finalize() starts looking scary...
      ........
        r69659 | benjamin.peterson | 2009-02-15 20:55:48 -0600 (Sun, 15 Feb 2009) | 1 line
      
        fix segfault on initialization failing
      ........
        r69660 | benjamin.peterson | 2009-02-15 21:09:31 -0600 (Sun, 15 Feb 2009) | 1 line
      
        apparently locale.getprefferedencoding() can raise a ImportError, too
      ........
        r69661 | benjamin.peterson | 2009-02-15 21:54:15 -0600 (Sun, 15 Feb 2009) | 1 line
      
        it's amazing this worked at all; I was using the wrong structs!
      ........
        r69671 | benjamin.peterson | 2009-02-16 08:38:27 -0600 (Mon, 16 Feb 2009) | 1 line
      
        add garbage collection support to bytesio
      ........
        r69677 | benjamin.peterson | 2009-02-16 10:31:03 -0600 (Mon, 16 Feb 2009) | 5 lines
      
        reduce ImportError catching code duplication
      
        I'm not sure this makes the code clearer with its new gotos, but
        at least I added a big fat comment
      ........
        r69812 | antoine.pitrou | 2009-02-20 13:50:16 -0600 (Fri, 20 Feb 2009) | 3 lines
      
        _StringIO now belongs to the _io modules, rather to its own _stringio module
      ........
        r69813 | antoine.pitrou | 2009-02-20 13:58:22 -0600 (Fri, 20 Feb 2009) | 3 lines
      
        Add a test for StringIO properties
      ........
        r69814 | antoine.pitrou | 2009-02-20 14:06:03 -0600 (Fri, 20 Feb 2009) | 3 lines
      
        Reimplement a few trivial StringIO functions and properties in C
      ........
        r69815 | antoine.pitrou | 2009-02-20 14:13:11 -0600 (Fri, 20 Feb 2009) | 3 lines
      
        Add the line_buffering property to TextIOWrapper, and test for it
      ........
        r69817 | antoine.pitrou | 2009-02-20 14:45:50 -0600 (Fri, 20 Feb 2009) | 4 lines
      
        Allow IncrementalNewlineDecoder to take unicode objects as decoding input if the decoder parameter is None
        This will help rewriting StringIO to C
      ........
        r69827 | antoine.pitrou | 2009-02-20 19:00:30 -0600 (Fri, 20 Feb 2009) | 3 lines
      
        Rewrite most of StringIO in C. Some almost empty stubs remain to be converted.
      ........
        r69828 | antoine.pitrou | 2009-02-20 19:09:25 -0600 (Fri, 20 Feb 2009) | 3 lines
      
        Plug a leak, and remove an unused string
      ........
        r69829 | benjamin.peterson | 2009-02-20 20:02:28 -0600 (Fri, 20 Feb 2009) | 1 line
      
        this assertions makes more sense here
      ........
        r69830 | benjamin.peterson | 2009-02-20 20:03:04 -0600 (Fri, 20 Feb 2009) | 1 line
      
        PyModule_AddObject can fail; simplify this code with a macro
      ........
        r69839 | antoine.pitrou | 2009-02-21 12:54:01 -0600 (Sat, 21 Feb 2009) | 3 lines
      
        StringIO is now written entirely in C (and blazingly fast)
      ........
        r69841 | benjamin.peterson | 2009-02-21 14:05:40 -0600 (Sat, 21 Feb 2009) | 1 line
      
        split the Python implementation of io into another module and rewrite the tests to test both implementations
      ........
        r69842 | benjamin.peterson | 2009-02-21 14:10:00 -0600 (Sat, 21 Feb 2009) | 1 line
      
        closed is not a function
      ........
        r69843 | benjamin.peterson | 2009-02-21 14:13:04 -0600 (Sat, 21 Feb 2009) | 1 line
      
        fix __all__ test
      ........
        r69844 | benjamin.peterson | 2009-02-21 14:21:24 -0600 (Sat, 21 Feb 2009) | 1 line
      
        fix the rest of the Misc tests
      ........
        r69845 | benjamin.peterson | 2009-02-21 14:26:59 -0600 (Sat, 21 Feb 2009) | 1 line
      
        RawIOBase is better for FileIO
      ........
        r69848 | benjamin.peterson | 2009-02-21 15:33:53 -0600 (Sat, 21 Feb 2009) | 1 line
      
        fix some more tests broken by bag argument validation
      ........
        r69850 | benjamin.peterson | 2009-02-21 16:16:42 -0600 (Sat, 21 Feb 2009) | 1 line
      
        make the python IncrementalNewineDecoder support a None decoder
      ........
        r69852 | benjamin.peterson | 2009-02-21 16:36:09 -0600 (Sat, 21 Feb 2009) | 1 line
      
        fix a BlockingIOError.characters_written bug
      ........
        r69854 | benjamin.peterson | 2009-02-21 16:49:02 -0600 (Sat, 21 Feb 2009) | 1 line
      
        check whence
      ........
        r69860 | benjamin.peterson | 2009-02-21 17:42:50 -0600 (Sat, 21 Feb 2009) | 1 line
      
        fix some of these Misbehaving io tests
      ........
        r69865 | benjamin.peterson | 2009-02-21 18:59:52 -0600 (Sat, 21 Feb 2009) | 1 line
      
        don't use super here()
      ........
        r69866 | benjamin.peterson | 2009-02-21 19:05:28 -0600 (Sat, 21 Feb 2009) | 1 line
      
        use implementation specific classes
      ........
        r69868 | benjamin.peterson | 2009-02-21 22:12:05 -0600 (Sat, 21 Feb 2009) | 1 line
      
        use a more DRY friendly approach to injecting module contents into test classes
      ........
        r69872 | antoine.pitrou | 2009-02-22 13:39:45 -0600 (Sun, 22 Feb 2009) | 3 lines
      
        Sanitize destructor behaviour of IOBase. Now Python-defined attributes can be accessed from close().
      ........
        r69873 | antoine.pitrou | 2009-02-22 13:50:14 -0600 (Sun, 22 Feb 2009) | 4 lines
      
        Only set the internal fd after it has been checked to be valid
        (otherwise, the destructor will attempt to close it)
      ........
        r69885 | benjamin.peterson | 2009-02-22 15:30:14 -0600 (Sun, 22 Feb 2009) | 1 line
      
        convert some other tests to use both io implementations
      ........
        r69888 | antoine.pitrou | 2009-02-22 17:03:16 -0600 (Sun, 22 Feb 2009) | 3 lines
      
        Silence all exceptions when finalizing
      ........
        r69891 | benjamin.peterson | 2009-02-22 17:27:24 -0600 (Sun, 22 Feb 2009) | 1 line
      
        convert another test to test both io implementations
      ........
        r69892 | benjamin.peterson | 2009-02-22 17:32:15 -0600 (Sun, 22 Feb 2009) | 1 line
      
        help poor people like me to find their io tests (did I miss any?)
      ........
        r69893 | benjamin.peterson | 2009-02-22 17:37:56 -0600 (Sun, 22 Feb 2009) | 1 line
      
        put a big note in the test telling people to write tests for both implementations now
      ........
        r69911 | antoine.pitrou | 2009-02-23 13:57:18 -0600 (Mon, 23 Feb 2009) | 3 lines
      
        expose DEFAULT_BUFFER_SIZE again (fixes a bunch of test failures)
      ........
        r69913 | antoine.pitrou | 2009-02-23 14:10:30 -0600 (Mon, 23 Feb 2009) | 4 lines
      
        Do the cyclic garbage collection tests only on the C version.
        The Python version is helpless as it uses __del__.
      ........
        r69914 | antoine.pitrou | 2009-02-23 14:21:41 -0600 (Mon, 23 Feb 2009) | 3 lines
      
        Adapt test_largefile to test both implementations
      ........
        r69915 | antoine.pitrou | 2009-02-23 14:25:14 -0600 (Mon, 23 Feb 2009) | 3 lines
      
        One small failure
      ........
        r69916 | antoine.pitrou | 2009-02-23 14:28:33 -0600 (Mon, 23 Feb 2009) | 3 lines
      
        Add a comment, at BP's request
      ........
        r69963 | antoine.pitrou | 2009-02-25 09:42:59 -0600 (Wed, 25 Feb 2009) | 3 lines
      
        Add a test of ABC inheritance
      ........
        r70033 | antoine.pitrou | 2009-02-27 15:49:50 -0600 (Fri, 27 Feb 2009) | 3 lines
      
        The base classes now are ABCs.
      ........
        r70035 | benjamin.peterson | 2009-02-27 15:57:41 -0600 (Fri, 27 Feb 2009) | 1 line
      
        good house keeping
      ........
        r70038 | antoine.pitrou | 2009-02-27 17:05:23 -0600 (Fri, 27 Feb 2009) | 4 lines
      
        Make the buffer allocation overflow tests specific to the C implementation, since the Python implementation resizes its buffers when needed rather than allocating them up front.
      ........
        r70041 | benjamin.peterson | 2009-02-27 18:26:12 -0600 (Fri, 27 Feb 2009) | 1 line
      
        kill java naming for sanity
      ........
        r70042 | benjamin.peterson | 2009-02-27 18:28:53 -0600 (Fri, 27 Feb 2009) | 2 lines
      
        timingTest is superseded by iobench
      ........
        r70043 | antoine.pitrou | 2009-02-27 19:13:50 -0600 (Fri, 27 Feb 2009) | 3 lines
      
        Remove the last traces of java naming in test_io
      ........
        r70044 | antoine.pitrou | 2009-02-27 19:18:34 -0600 (Fri, 27 Feb 2009) | 3 lines
      
        Better resource cleanup
      ........
        r70045 | antoine.pitrou | 2009-02-27 19:29:00 -0600 (Fri, 27 Feb 2009) | 3 lines
      
        Remove dubious uses of super(), and fix one test
      ........
        r70046 | antoine.pitrou | 2009-02-27 19:31:00 -0600 (Fri, 27 Feb 2009) | 3 lines
      
        Bump up CHUNK_SIZE (no need to make the Python version look slower than it is)
      ........
        r70047 | benjamin.peterson | 2009-02-27 20:03:26 -0600 (Fri, 27 Feb 2009) | 1 line
      
        fix typo
      ........
        r70048 | benjamin.peterson | 2009-02-27 21:35:11 -0600 (Fri, 27 Feb 2009) | 1 line
      
        move code to a better place
      ........
        r70067 | benjamin.peterson | 2009-02-28 10:43:20 -0600 (Sat, 28 Feb 2009) | 4 lines
      
        1. make sure to undo buffered read aheads in BufferedRandom.seek()
        2. refill the buffer if have <= 0
        3. fix the last failing test_io test!
      ........
        r70068 | benjamin.peterson | 2009-02-28 10:57:50 -0600 (Sat, 28 Feb 2009) | 1 line
      
        define read1() on the python implementation's BufferedIOBase
      ........
        r70069 | benjamin.peterson | 2009-02-28 11:01:17 -0600 (Sat, 28 Feb 2009) | 1 line
      
        document read1() in BufferedIOBase
      ........
        r70070 | benjamin.peterson | 2009-02-28 11:06:42 -0600 (Sat, 28 Feb 2009) | 1 line
      
        give credit where credit is due
      ........
        r70075 | antoine.pitrou | 2009-02-28 13:34:59 -0600 (Sat, 28 Feb 2009) | 3 lines
      
        Amaury's name
      ........
        r70112 | antoine.pitrou | 2009-03-02 17:11:55 -0600 (Mon, 02 Mar 2009) | 4 lines
      
        Looks like this is necessary in order to build cleanly under Windows
        (someone correct this if it's wrong, I'm no Windows user)
      ........
        r70133 | benjamin.peterson | 2009-03-03 15:23:32 -0600 (Tue, 03 Mar 2009) | 1 line
      
        fix test_newline_property on _pyio.StringIO
      ........
        r70135 | benjamin.peterson | 2009-03-03 15:47:30 -0600 (Tue, 03 Mar 2009) | 1 line
      
        fix typos and inconsistencies. thanks to Daniel Diniz
      ........
        r70140 | benjamin.peterson | 2009-03-03 16:21:10 -0600 (Tue, 03 Mar 2009) | 1 line
      
        add the test from #5266
      ........
      4fa88fa0
  30. 01 Şub, 2009 1 kayıt (commit)
  31. 27 Ock, 2009 1 kayıt (commit)
  32. 02 Ara, 2008 1 kayıt (commit)
  33. 17 Kas, 2008 1 kayıt (commit)
  34. 03 Kas, 2008 2 kayıt (commit)
    • Benjamin Peterson's avatar
      fix test_descr · c1de4cca
      Benjamin Peterson yazdı
      c1de4cca
    • Benjamin Peterson's avatar
      Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from · c0747cf5
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r67028 | benjamin.peterson | 2008-10-25 18:27:07 -0500 (Sat, 25 Oct 2008) | 1 line
      
        don't use a catch-all
      ........
        r67040 | armin.rigo | 2008-10-28 12:01:21 -0500 (Tue, 28 Oct 2008) | 5 lines
      
        Fix one of the tests: it relied on being present in an "output test" in
        order to actually test what it was supposed to test, i.e. that the code
        in the __del__ method did not crash.  Use instead the new helper
        test_support.captured_output().
      ........
        r67044 | amaury.forgeotdarc | 2008-10-29 18:15:57 -0500 (Wed, 29 Oct 2008) | 3 lines
      
        Correct error message in io.open():
        closefd=True is the only accepted value with a file name.
      ........
        r67046 | thomas.heller | 2008-10-30 15:18:13 -0500 (Thu, 30 Oct 2008) | 2 lines
      
        Fixed a modulefinder crash on certain relative imports.
      ........
        r67052 | christian.heimes | 2008-10-30 16:26:15 -0500 (Thu, 30 Oct 2008) | 1 line
      
        Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members.
      ........
        r67065 | benjamin.peterson | 2008-10-30 18:59:18 -0500 (Thu, 30 Oct 2008) | 1 line
      
        move unprefixed error into .c file
      ........
        r67070 | benjamin.peterson | 2008-10-31 15:41:44 -0500 (Fri, 31 Oct 2008) | 1 line
      
        rephrase has_key doc
      ........
        r67077 | benjamin.peterson | 2008-11-03 09:14:51 -0600 (Mon, 03 Nov 2008) | 1 line
      
        #4048 make the parser module accept relative imports as valid
      ........
        r67082 | hirokazu.yamamoto | 2008-11-03 12:03:06 -0600 (Mon, 03 Nov 2008) | 2 lines
      
        Issue #3774: Fixed an error when create a Tkinter menu item without command
        and then remove it. Written by Guilherme Polo (gpolo).
      ........
      c0747cf5
  35. 16 Eki, 2008 1 kayıt (commit)
  36. 15 Tem, 2008 1 kayıt (commit)