Jeremy Hylton
cf2f41919c
Hack: Fix some test_urllib2.net tests by getting them access to the
...
raw socket so they can check the timeout value. Should change the
code under test to expose the timeout in a more direct way.
2007-08-03 20:31:38 +00:00
Jeremy Hylton
fb35f65e8b
A few local changes for consistency of string literals.
2007-08-03 20:30:33 +00:00
Guido van Rossum
c0f2d2d345
SF patch# 1762940 by Joe Gregorio.
...
Fix test_cookielib and test_urllib2.
(The changes to urllib make urllib.quote() work correctly for Unicode
strings; but they don't fix test_urllib.)
2007-08-03 19:19:24 +00:00
Guido van Rossum
15863ea07a
SF patch# 1764815 by Paul Colomiets.
...
Fix for test_socketserver.
Use io.BytesIO instead of io.StringIO, and adjust tests.
2007-08-03 19:03:39 +00:00
Guido van Rossum
ad8d30092c
SF patch# 1766592 by Paul Colomiets.
...
Fix test_zipimport.
2007-08-03 18:40:49 +00:00
Collin Winter
6afaeb757a
Convert print statements to function calls in Tools/.
2007-08-03 17:06:41 +00:00
Jeremy Hylton
e5d0e8431f
Make consistent use of "" for string literals in new classes.
2007-08-03 13:45:24 +00:00
Jeremy Hylton
811fc14935
Fix status line parsing for http response.
2007-08-03 13:30:02 +00:00
Guido van Rossum
4737482fad
Add a default __prepare__() method to 'type', so it can be called
...
using super(). (See recent conversation on python-3000 with Talin
and Phillip Eby about PEP 3115 chaining rules.)
2007-08-02 16:48:17 +00:00
Georg Brandl
a9efc8e268
Remove useless \withsubitem.
2007-08-02 07:53:40 +00:00
Guido van Rossum
b43daf7096
Changes to long and float by Jeffrey Jasskin to conform to PEP 3141.
...
In particular, add trivial implementations of .real, .imag and .conjugate()
to both, and add .numerator and .denominator to long.
Also some small optimizations (e.g. remove long_pos in favor of long_long).
2007-08-01 18:08:08 +00:00
Guido van Rossum
a6bcefca81
When testing all stdlib modules, ignore test_pep263.py which is encoded
...
in KOI8-R.
2007-08-01 18:06:13 +00:00
Guido van Rossum
70d2b890de
Tests for @abstractproperty by Jeffrey Yasskin.
...
(The previous changes to abc.py were also by him).
Put back a comment about using super() for properties
(I didn't realize this worked).
2007-08-01 17:52:23 +00:00
Guido van Rossum
46334cdae8
Kill div, mod and divmod on complex (already deprecated in 2.x).
...
Add docstring for conjugate().
Patch by Jeffrey Yasskin.
2007-08-01 17:43:15 +00:00
Guido van Rossum
b31339fa02
Add @abstractproperty.
2007-08-01 17:32:28 +00:00
Walter Dörwald
e78178e2c0
Bytes (which are the input for decoding) are mutable now. If a decoding
...
error callback changes the bytes object in the exception the decoder might
use memory that's no longer in use. Change unicode_decode_call_errorhandler()
so that it fetches the adresses of the bytes array (start and end) from the
exception object and passes them back to the caller.
2007-07-30 13:31:40 +00:00
Brett Cannon
2dbde5ea44
In cases where dealing with base64, do the conversion but then get the ASCII
...
string representation for use in the XML.
Also strip out some unneeded encoding/decoding steps.
2007-07-30 03:50:35 +00:00
Brett Cannon
96d7e8369c
Don't try to use a bytes sequence for file paths. Also force equivalency tests
...
to be between str8 and str.
2007-07-30 01:34:07 +00:00
Guido van Rossum
7a2653438a
Add a missing "rf.depth = 0;" to marshal_load().
...
Reported by Joe Smith. This makes the CYGWIN tests pass;
it's a miracle it didn't fail on other platforms.
Seems like it was accidentally dropped (maybe a merge artifact?).
2007-07-30 00:04:35 +00:00
Martin v. Löwis
447d33ead6
Implement PEP 3120.
2007-07-29 18:10:01 +00:00
Brett Cannon
5de17db361
Testing against a different default encoding is meaningless as the default
...
encoding can only be UTF-8 now.
2007-07-29 02:57:38 +00:00
Brett Cannon
d38d078566
Expat parser no longer has a returns_unicode attribute since everything is
...
Unicode now.
2007-07-29 02:56:27 +00:00
Martin v. Löwis
48f4cf9b94
Use BytesIO instead of cStringIO.StringIO.
2007-07-28 17:58:14 +00:00
Martin v. Löwis
1bba9db0c3
Revert previous checkin.
2007-07-28 17:57:00 +00:00
Martin v. Löwis
c582bfca26
Fix quopri to operate consistently on bytes.
2007-07-28 17:52:25 +00:00
Martin v. Löwis
f3f0c611dd
Return bytes, not str8.
2007-07-28 17:51:59 +00:00
Martin v. Löwis
f30bb0eba2
Patch #1762412 : Fix test case for struni branch.
2007-07-28 11:40:46 +00:00
Guido van Rossum
3e1f85eb5d
Fix the minidom test.
...
In order to do this, I added an optional encoding argument to io.StringIO.
The toprettyxml() function returns bytes when you specify an encoding now.
2007-07-27 18:03:11 +00:00
Guido van Rossum
3992db81b6
SF patch# 1759922 by Alexandre Vassalotti.
...
Fix one of the two failing tests for minidom.
2007-07-27 17:26:00 +00:00
Guido van Rossum
624ab7c28a
Make test_sgmllib pass on OSX. Hopefully it still passes everywhere else too.
2007-07-27 17:12:11 +00:00
Guido van Rossum
45c85d15b0
Fix the docstrings for keys(), items(), values() (especially the latter).
...
Get rid of some #ifdef'ed-out code.
2007-07-27 16:31:40 +00:00
Guido van Rossum
ea8344797e
SF patch# 1757839 by Alexandre Vassalotti (part 2).
...
Change a bunch of .assert_(X == Y) to .assertEqual(X, Y).
2007-07-27 05:17:50 +00:00
Guido van Rossum
f7a94e4b44
SF patch# 1761465 by Jeffrey Yasskin.
...
Fix test_aepack and test_applesingle.
2007-07-27 04:41:00 +00:00
Guido van Rossum
67feb09d06
Delete redundant read() and close() methods from SocketIO class.
2007-07-27 04:38:24 +00:00
Guido van Rossum
97a7f1e420
Don't redirect stdout for test_curses.
...
Kill some dead (commented-out) code.
2007-07-26 18:43:46 +00:00
Guido van Rossum
e5aeaad0ca
Return bytes, not string from read(). Makes test_mmap.py pass.
2007-07-26 18:28:23 +00:00
Brett Cannon
1eb79cfd6d
Move xdrlib over to the bytes type.
2007-07-26 03:19:46 +00:00
Brett Cannon
d24fffe7c6
Move shelve over to BytesIO as pickle.(Pickler | Unpickler) expect binary
...
files, not text files.
test_shelve still fails thanks to bsddb not having been fixed.
2007-07-26 03:07:02 +00:00
Guido van Rossum
2f2fffb766
Fix two bad type identifiers that caused crashes on OSX (icglue and Nav).
...
Silence two innocuous warnings (_File and _collections).
2007-07-25 16:47:51 +00:00
Guido van Rossum
3f6dd68e2a
Make the last two curses demos work again -- they were using float
...
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.)
2007-07-24 17:57:36 +00:00
Guido van Rossum
6c95da384e
ccMake test_curses pass.
...
Can't guarantee I caught every spot.
2007-07-24 00:16:38 +00:00
Guido van Rossum
51a883bf87
Make test_wave.py pass.
...
I have no illusion that this fixes all issues with this module.
2007-07-23 21:28:30 +00:00
Guido van Rossum
f761e104f6
Make test_tcl.py pass, by accepting unicode strings as variable names.
2007-07-23 18:34:37 +00:00
Guido van Rossum
005ebb1f7c
Tweaks to make the codecmaps tests pass again.
...
(To run these, you need to pass -uurlfetch to regrtest.py or runtests.sh.)
2007-07-23 18:06:59 +00:00
Guido van Rossum
4ca9471831
SF patch# 1759016 by Joe Gregorio, who writes:
...
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.
2007-07-23 17:42:32 +00:00
Guido van Rossum
9e473c28e4
SF patch# 1758570 by Jeffrey Yasskin, who writes:
...
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.
2007-07-23 17:08:21 +00:00
Guido van Rossum
f520c05456
Don't use cwnon-ASCII characters in the source; use \ooo escapes.
...
(This doesn't fix test_cookielib, just removes the SyntaxError.)
2007-07-23 03:46:37 +00:00
Guido van Rossum
13d7799f87
Fix import of frozen package submodules to use Unicode. Fixes test_frozen.
2007-07-23 03:16:50 +00:00
Guido van Rossum
3698746585
Add a command line option to set the -u flag.
2007-07-23 02:57:24 +00:00
Guido van Rossum
accecdf969
Don't use a sleep to wait for the server to be ready; this caused
...
problems on my OSX laptop. use a condition variable instead.
2007-07-23 01:49:28 +00:00