index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
io.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fall back to ascii if the locale module cannot be loaded.
Martin v. Löwis
2007-08-11
1
-2/+7
*
Set sys.stdout.encoding properly.
Martin v. Löwis
2007-08-11
1
-2/+7
*
SF patch# 1770008 by Christian Heimes (plus some extras).
Guido van Rossum
2007-08-09
1
-0/+5
*
Make sure socket.close() doesn't interfere with socket.makefile().
Jeremy Hylton
2007-08-03
1
-28/+0
*
Fix the minidom test.
Guido van Rossum
2007-07-27
1
-3/+5
*
Delete redundant read() and close() methods from SocketIO class.
Guido van Rossum
2007-07-27
1
-24/+0
*
Make close() (all versions) ignore IOError from flush().
Guido van Rossum
2007-07-22
1
-4/+11
*
SF patch# 1757683 by Alexandre Vassalotti. Add support for
Guido van Rossum
2007-07-21
1
-0/+5
*
Set closed flag *after* calling flush().
Guido van Rossum
2007-07-10
1
-2/+4
*
Add proper tests for closed files to various I/O operations,
Guido van Rossum
2007-07-10
1
-4/+21
*
Made test_file pass. This meant adding support for read(-1) and read()
Guido van Rossum
2007-07-10
1
-35/+56
*
Make test_socket work.
Guido van Rossum
2007-06-08
1
-7/+13
*
Accellerate binary readline() a bit.
Guido van Rossum
2007-06-07
1
-8/+14
*
tokenizer.c: make coding markup work again.
Guido van Rossum
2007-06-07
1
-2/+1
*
Remove debug print.
Walter Dörwald
2007-05-29
1
-1/+0
*
Fix typo.
Walter Dörwald
2007-05-29
1
-1/+2
*
Add isatty() to TextIOWrapper.
Guido van Rossum
2007-05-27
1
-0/+3
*
Add an encoding property to TextIOBase instances.
Guido van Rossum
2007-05-24
1
-0/+9
*
Make test_subprocess work. Fix universal newlines in io.py.
Guido van Rossum
2007-05-24
1
-14/+6
*
Remove native popen() and fdopen(), replacing them with subprocess calls.
Guido van Rossum
2007-05-24
1
-2/+6
*
Sockets facelift. APIs that could return binary data (e.g. aton() and
Guido van Rossum
2007-05-21
1
-17/+37
*
Make all the multibyte codec tests pass.
Guido van Rossum
2007-05-17
1
-72/+57
*
Fix io.StringIO for wide Python builds.
Walter Dörwald
2007-05-16
1
-6/+11
*
Fix io.StringIO: String are stored encoded (using "unicode-internal" as the
Walter Dörwald
2007-05-16
1
-15/+30
*
Add to an XXX comment.
Guido van Rossum
2007-05-09
1
-1/+2
*
Fix a few places where a str instead of a bytes object was used.
Guido van Rossum
2007-05-08
1
-1/+1
*
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl
2007-04-21
1
-2/+2
*
Instead of pickling the whole decoder, use the new getstate/setstate API.
Guido van Rossum
2007-04-17
1
-33/+27
*
Support name and mode attributes on all file types.
Guido van Rossum
2007-04-13
1
-10/+81
*
Make a few more tests pass with the new I/O library.
Guido van Rossum
2007-04-12
1
-2/+0
*
Make sure that writing an array instance returns the number of bytes,
Guido van Rossum
2007-04-12
1
-1/+6
*
TextIO improvement:
Guido van Rossum
2007-04-12
1
-3/+5
*
Speed up next() by disabling snapshot updating then.
Guido van Rossum
2007-04-11
1
-5/+19
*
More efficient implementation of tell(); _read_chunk() doesn't have to
Guido van Rossum
2007-04-11
1
-29/+34
*
Real pickling for bytes.
Guido van Rossum
2007-04-11
1
-1/+5
*
Checkpoint so I can continue to work on this at a different box.
Guido van Rossum
2007-04-11
1
-25/+145
*
truncate() returns the new size and position.
Guido van Rossum
2007-04-10
1
-11/+14
*
Implement long positioning (Unix only, probably).
Guido van Rossum
2007-04-10
1
-14/+22
*
BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase!
Guido van Rossum
2007-04-10
1
-3/+2
*
More cleanup. Renamed BlockingIO to BlockingIOError.
Guido van Rossum
2007-04-10
1
-253/+312
*
Cleanup.
Guido van Rossum
2007-04-08
1
-61/+124
*
Add some backwards compatibility stuff.
Guido van Rossum
2007-04-07
1
-4/+29
*
Checkpoint.
Guido van Rossum
2007-04-06
1
-16/+49
*
Get rid of duplicate definition of BufferedIOBase.
Guido van Rossum
2007-04-06
1
-12/+6
*
Added a working Text I/O layer, by Mark Russell.
Guido van Rossum
2007-04-06
1
-26/+257
*
Bug 1679498: remove unused instance variables _readable, _writable and
Guido van Rossum
2007-03-18
1
-4/+0
*
Bug 1679498: unset variable 'bs'.
Guido van Rossum
2007-03-18
1
-0/+2
*
Add some XXX comments and fix BufferedReader signature.
Guido van Rossum
2007-03-15
1
-2/+6
*
Check in Daniel Stutzbach's _fileio.c and test_fileio.py
Guido van Rossum
2007-03-08
1
-1/+13
*
Change the specs for readinto() -- it should *not* shorten the buffer to
Guido van Rossum
2007-03-07
1
-4/+10
[next]