- 27 Nis, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Nis, 2007 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 23 Nis, 2007 2 kayıt (commit)
-
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
- 21 Nis, 2007 2 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Georg Brandl yazdı
-
- 17 Nis, 2007 8 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
io.py is used for open() and sys.std{in,out,err}. Note that this currently breaks about 25 tests.
-
Neal Norwitz yazdı
* all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
-
Neal Norwitz yazdı
which was removed. Use string methods rather than the string module.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Guido van Rossum yazdı
-
- 16 Nis, 2007 2 kayıt (commit)
-
-
Walter Dörwald yazdı
methods to incrementalcodecs. Also forward port r54786 (fix the incremental utf_8_sig decoder).
-
Guido van Rossum yazdı
I'll add this step to PEP 306.
-
- 15 Nis, 2007 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 13 Nis, 2007 6 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Don't read more than one line when reading text from a tty device. Add peek() and read1() methods. Return str instead of unicode when return ASCII characters in text mode.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Support ord(b) where b is a 1-byte string. In zipfile.py, work around bytes being ints instead of chars, sometimes.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
buffer-supporting objects (Unicode always excluded), and also of str and bytes. (For some reason u"" + b"" doesn't fail, I'll investigate later.)
-
- 12 Nis, 2007 6 kayıt (commit)
-
-
Guido van Rossum yazdı
Fix the truncate() semantics -- it should not affect the current position. Switch wave.py/chunk.py to struct.unpack_from() to support bytes. Don't use writelines() on binary files (test_fileinput.py).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
not the number of array elements.
-
Guido van Rossum yazdı
- 25% speed increse in tell(); - f.seek(0, 1) now maps to f.seek(f.tell(), 0) instead of to f.tell().
-
- 11 Nis, 2007 8 kayıt (commit)
-
-
Georg Brandl yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
call self.buffer.tell().
-
Guido van Rossum yazdı
Restore complex pickling. Use cPickle in io.py.
-
Guido van Rossum yazdı
without touching io.py or test_io.py. The cause of the failure was that bytes objects didn't pickle right. As a stop-gap measure, I'm providing bytes pickling via copy_reg. Eventually, we should use a more efficient protocol, e.g. __reduce_ex__ or __getstate__/__setstate__.
-
Guido van Rossum yazdı
There is somewhat working (but slow) code supporting seek/tell for text files, but extensive testing exposes a bug I can't nail down.
-
- 10 Nis, 2007 3 kayıt (commit)
-
-
Guido van Rossum yazdı
write() returns the number of bytes/characters written/buffered. FileIO.close() calls self.flush(). Implement readinto() for buffered readers. Tests th check all these. Test proper behavior of __enter__/__exit__.
-
Guido van Rossum yazdı
Reduce large file size to 2**31 (and a bit).
-
Guido van Rossum yazdı
Etc., etc.
-