- 03 Agu, 2007 3 kayıt (commit)
-
-
Collin Winter yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
- 02 Agu, 2007 2 kayıt (commit)
-
-
Guido van Rossum yazdı
using super(). (See recent conversation on python-3000 with Talin and Phillip Eby about PEP 3115 chaining rules.)
-
Georg Brandl yazdı
-
- 01 Agu, 2007 5 kayıt (commit)
-
-
Guido van Rossum yazdı
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).
-
Guido van Rossum yazdı
in KOI8-R.
-
Guido van Rossum yazdı
(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).
-
Guido van Rossum yazdı
Add docstring for conjugate(). Patch by Jeffrey Yasskin.
-
Guido van Rossum yazdı
-
- 30 Tem, 2007 4 kayıt (commit)
-
-
Walter Dörwald yazdı
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.
-
Brett Cannon yazdı
string representation for use in the XML. Also strip out some unneeded encoding/decoding steps.
-
Brett Cannon yazdı
to be between str8 and str.
-
Guido van Rossum yazdı
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?).
-
- 29 Tem, 2007 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Brett Cannon yazdı
encoding can only be UTF-8 now.
-
Brett Cannon yazdı
Unicode now.
-
- 28 Tem, 2007 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 27 Tem, 2007 7 kayıt (commit)
-
-
Guido van Rossum yazdı
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.
-
Guido van Rossum yazdı
Fix one of the two failing tests for minidom.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Get rid of some #ifdef'ed-out code.
-
Guido van Rossum yazdı
Change a bunch of .assert_(X == Y) to .assertEqual(X, Y).
-
Guido van Rossum yazdı
Fix test_aepack and test_applesingle.
-
Guido van Rossum yazdı
-
- 26 Tem, 2007 4 kayıt (commit)
-
-
Guido van Rossum yazdı
Kill some dead (commented-out) code.
-
Guido van Rossum yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
files, not text files. test_shelve still fails thanks to bsddb not having been fixed.
-
- 25 Tem, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Silence two innocuous warnings (_File and _collections).
-
- 24 Tem, 2007 2 kayıt (commit)
-
-
Guido van Rossum yazdı
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 yazdı
Can't guarantee I caught every spot.
-
- 23 Tem, 2007 4 kayıt (commit)
-
-
Guido van Rossum yazdı
I have no illusion that this fixes all issues with this module.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
(To run these, you need to pass -uurlfetch to regrtest.py or runtests.sh.)
-
Guido van Rossum yazdı
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.
-