- 27 Jul, 2007 2 commits
-
-
Guido van Rossum authored
Fix test_aepack and test_applesingle.
-
Guido van Rossum authored
-
- 26 Jul, 2007 4 commits
-
-
Guido van Rossum authored
Kill some dead (commented-out) code.
-
Guido van Rossum authored
-
Brett Cannon authored
-
Brett Cannon authored
files, not text files. test_shelve still fails thanks to bsddb not having been fixed.
-
- 25 Jul, 2007 1 commit
-
-
Guido van Rossum authored
Silence two innocuous warnings (_File and _collections).
-
- 24 Jul, 2007 2 commits
-
-
Guido van Rossum authored
division. The other curses demos all work fine, so I'm more confident that the curses library actually works. (Don't try to display non-ASCII characters, of course.)
-
Guido van Rossum authored
Can't guarantee I caught every spot.
-
- 23 Jul, 2007 11 commits
-
-
Guido van Rossum authored
I have no illusion that this fixes all issues with this module.
-
Guido van Rossum authored
-
Guido van Rossum authored
(To run these, you need to pass -uurlfetch to regrtest.py or runtests.sh.)
-
Guido van Rossum authored
1. Removed "returns_unicode" attribute, associated code in the module to support that attribute, and all tests associated with it. 2. Parsed data is now returned as unicode strings. 3. Changed input tests to use io.BytesIO instead of StringIO, to reflect the byte processing nature of expat.
-
Guido van Rossum authored
I made Carbon.File.pathname return unicode, by analogy with macpath.abspath. There could easily be other bugs of the same sort in this file. The uses of PyString_FromString*() in particular look sketchy.
-
Guido van Rossum authored
(This doesn't fix test_cookielib, just removes the SyntaxError.)
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
problems on my OSX laptop. use a condition variable instead.
-
Collin Winter authored
-
Collin Winter authored
-
- 22 Jul, 2007 5 commits
-
-
Guido van Rossum authored
This makes test_resource.py pass, and I think it's the right thing to do: if you're closing a file after encountering an I/O error there's nothing you can do about it. If you want the error, you can call flush() yourself.
-
Guido van Rossum authored
its failure means much, now that the handling of unicode and bytes has changed so much.
-
Guido van Rossum authored
I *think* it's okay no longer to require that compiling a Unicode string with a coding declaration fails; it seems appropriate to just ignore it.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r56486 | kurt.kaiser | 2007-07-22 05:27:08 +0200 (So, 22 Jul 2007) | 2 lines Fix typo introduced at r55797 ........ r56487 | kurt.kaiser | 2007-07-22 07:48:45 +0200 (So, 22 Jul 2007) | 2 lines Exception attr accessed via args in py3k. ........ r56489 | martin.v.loewis | 2007-07-22 15:32:44 +0200 (So, 22 Jul 2007) | 2 lines Regenerate. ........ r56490 | martin.v.loewis | 2007-07-22 15:34:06 +0200 (So, 22 Jul 2007) | 2 lines Port Mac modules to PEP 3123. ........ r56491 | martin.v.loewis | 2007-07-22 16:35:53 +0200 (So, 22 Jul 2007) | 1 line Port to PEP 3123. ........
-
- 21 Jul, 2007 5 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ................ r56477 | martin.v.loewis | 2007-07-21 09:04:38 +0200 (Sa, 21 Jul 2007) | 11 lines Merged revisions 56466-56476 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r56476 | martin.v.loewis | 2007-07-21 08:55:02 +0200 (Sa, 21 Jul 2007) | 4 lines PEP 3123: Provide forward compatibility with Python 3.0, while keeping backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT. ........ ................ r56478 | martin.v.loewis | 2007-07-21 09:47:23 +0200 (Sa, 21 Jul 2007) | 2 lines PEP 3123: Use proper C inheritance for PyObject. ................ r56479 | martin.v.loewis | 2007-07-21 10:06:55 +0200 (Sa, 21 Jul 2007) | 3 lines Add longintrepr.h to Python.h, so that the compiler can see that PyFalse is really some kind of PyObject*. ................ r56480 | martin.v.loewis | 2007-07-21 10:47:18 +0200 (Sa, 21 Jul 2007) | 2 lines Qualify SHIFT, MASK, BASE. ................ r56482 | martin.v.loewis | 2007-07-21 19:10:57 +0200 (Sa, 21 Jul 2007) | 2 lines Correctly refer to _ob_next. ................
-
Guido van Rossum authored
seeking/writing beyond EOF to io.BytesIO.
-
Guido van Rossum authored
test_old_mailbox pass.
-
Guido van Rossum authored
-
- 20 Jul, 2007 8 commits
-
-
Collin Winter authored
-
Guido van Rossum authored
Add a note that this module is thread-unsafe. :-(
-
Guido van Rossum authored
a non-ASCII character in it should fail. Because of PEP 3131 this test is bogus anyway. Also some cosmetic cleanup.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
encoding as latin-1 if we want it to fail.
-
Guido van Rossum authored
svn+ssh://pythondev@svn.python.org/python/branches/p3yk ................ r56454 | kurt.kaiser | 2007-07-18 22:26:14 -0700 (Wed, 18 Jul 2007) | 2 lines Make relative imports explicit for py3k ................ r56455 | kurt.kaiser | 2007-07-18 23:12:15 -0700 (Wed, 18 Jul 2007) | 2 lines Was modifying dict during iteration. ................ r56457 | guido.van.rossum | 2007-07-19 07:33:19 -0700 (Thu, 19 Jul 2007) | 2 lines Fix failing test. ................ r56466 | guido.van.rossum | 2007-07-19 20:58:16 -0700 (Thu, 19 Jul 2007) | 35 lines Merged revisions 56413-56465 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r56439 | georg.brandl | 2007-07-17 23:37:55 -0700 (Tue, 17 Jul 2007) | 2 lines Use "Unix" as platform name, not "UNIX". ........ r56441 | guido.van.rossum | 2007-07-18 10:19:14 -0700 (Wed, 18 Jul 2007) | 3 lines SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors. (Slightly tweaked for style and refcounts.) ........ r56444 | kurt.kaiser | 2007-07-18 12:58:42 -0700 (Wed, 18 Jul 2007) | 2 lines Fix failing unicode test caused by change to ast.c at r56441 ........ r56451 | georg.brandl | 2007-07-18 15:36:53 -0700 (Wed, 18 Jul 2007) | 2 lines Add description for wave.setcomptype() values ........ r56456 | walter.doerwald | 2007-07-19 06:04:38 -0700 (Thu, 19 Jul 2007) | 3 lines Document that codecs.lookup() returns a CodecInfo object. (fixes SF bug #1754453). ........ r56463 | facundo.batista | 2007-07-19 16:57:38 -0700 (Thu, 19 Jul 2007) | 6 lines Added a select.select call in the test server loop to make sure the socket is ready to be read from before attempting a read (this prevents an error 10035 on some Windows platforms). [GSoC - Alan McIntyre] ........ ................
-
Guido van Rossum authored
-
Guido van Rossum authored
-
- 19 Jul, 2007 2 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
strings, in Latin-1. Bytes are once more pickled through bytes.__reduce__, but now it returns "latin-1" as the second parameter. Unfortunately this breaks datetime pickling. I'll have to investigate further; reverting Martin's changes doesn't seem to help.
-