- 8742977 truncate() returns the new size and position. by Guido van Rossum · 18 years ago
- 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 18 years ago
- 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 18 years ago
- cce92b2 BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase! by Guido van Rossum · 18 years ago
- 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 18 years ago
- ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 18 years ago
- 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 18 years ago
- 62cbc8a Make sure that a forked child process exits even if it raises an exception. by Guido van Rossum · 18 years ago
- 933520b Fix a place where it's pretty clear that a binary open mode was intended. by Guido van Rossum · 18 years ago
- 4f0db6e Cleanup. by Guido van Rossum · 18 years ago
- b042815 Make it possible to instantiate a _FileIO() with an integer file descriptor by Guido van Rossum · 18 years ago
- b8551ae Somehow this contained a bogus reference to "exceptions" which caused by Guido van Rossum · 18 years ago
- 756aa93 A class used as an exception should inherit from Exception. by Guido van Rossum · 18 years ago
- 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 18 years ago
- 76c5d4d Checkpoint. by Guido van Rossum · 18 years ago
- 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 18 years ago
- 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 18 years ago
- 0e07448 make the markup match that of the trunk to avoid insane spread of by Fred Drake · 18 years ago
- 6b18a5b Fix refcounting bug reported by Amaury Forgeot d'Arc. by Guido van Rossum · 18 years ago
- 42dae6a Make readonly members defined in C throw an AttributeError on modification. This brings them into sync with Python-level attributes. Fixes bug #1687163. by Collin Winter · 18 years ago
- d84da1b More fixes related to removal of exception slicing. by Guido van Rossum · 18 years ago
- 782ff27 Fix errors in bsddb3 tests due to removal of exception slicing. by Guido van Rossum · 18 years ago
- cef2098 Moving xreload to the sandbox for now. by Guido van Rossum · 18 years ago
- e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 18 years ago
- a4335b1 Looks like this file wasn't checked in. by Guido van Rossum · 18 years ago
- e33761d Fix two bugs related to the remove of exception subscripting. by Collin Winter · 18 years ago
- 3e81ec8 Address some XXXs from Neal Norwitz. by Collin Winter · 18 years ago
- ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 18 years ago
- 3a38362 Fix refleak in compiler. by Guido van Rossum · 18 years ago
- 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 18 years ago
- 7d71fb8 Little fixes: by Neal Norwitz · 18 years ago
- 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 18 years ago
- 450ee81 Use the local python binary to build the docs, not whatever 'python' is on the PATH (which is probably Python 2.x, and we need 3.x). by Collin Winter · 18 years ago
- 65d09d4 Run 2to3 over Doc/tools/. by Collin Winter · 18 years ago
- 89df245 Make test_socket_ssl.py pass by fixing some code that was by Guido van Rossum · 18 years ago
- 7cba850 Use input() now that it is available. by Guido van Rossum · 18 years ago
- e66c8c7 "from ... import x" should not be a syntax error... make by Georg Brandl · 18 years ago
- d16e81a Fix the compiler package w.r.t. the new metaclass syntax. by Guido van Rossum · 18 years ago
- 801dd73 NEWS item for PEP 3115. by Georg Brandl · 18 years ago
- d35e970 Refactor astgen.py with 2to3. by Georg Brandl · 18 years ago
- dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 18 years ago
- 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 18 years ago
- 9091e3a Update the silly version number. by Guido van Rossum · 18 years ago
- 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
- ef17c16 Bug 1679498: remove unused instance variables _readable, _writable and by Guido van Rossum · 18 years ago
- bb09b21 Bug 1679498: unset variable 'bs'. by Guido van Rossum · 18 years ago
- c819dea Add some XXX comments and fix BufferedReader signature. by Guido van Rossum · 18 years ago
- 44d7bee Add Mike Verdone (co-author of io.py and PEP 3116). by Guido van Rossum · 18 years ago
- ed3b838 Check the keys of the locals dict -- they need not be a list. by Georg Brandl · 18 years ago
- e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 18 years ago
- af33438 Add a missing forward declaration for PyFileIO_Type. The _fileio module now compiles with --with-pydebug. by Collin Winter · 18 years ago
- 7afaa88 Move test_unittest, test_doctest and test_doctest2 higher up in the test order by Collin Winter · 18 years ago
- 49dc35b Fix another unittest that broke due to dict views (more precisely, due by Guido van Rossum · 18 years ago
- de3bc7c Fix embarrassing syntax mix. by Guido van Rossum · 18 years ago
- a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 18 years ago
- 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 18 years ago
- 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 18 years ago
- 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 18 years ago
- c788554 Addendum of patch #1669633: additional tests for bytes methods. by Georg Brandl · 18 years ago
- 2e65f89 Final part of SF# 1607548 by Tony Lownds: fix pydoc and inspect. by Guido van Rossum · 18 years ago
- 4b7f317 regenerated to reflect the addition of 'nonlocal' and removal of 'print' by Jack Diederich · 18 years ago
- 4573942 Regenerate symbol.py. by Guido van Rossum · 18 years ago
- 3695bf3 Use __builtin__, not __builtins__. by Brett Cannon · 18 years ago
- 4af7dcf Fix test_pep352 to deal with the removal of the 'exceptions' module. by Brett Cannon · 18 years ago
- 4fc8ae4 Fix off-by-one bug in memmove() call in bytes_insert(). by Guido van Rossum · 18 years ago
- 6f8fe15 Fix httplib for removal of slicing from exceptions. by Brett Cannon · 18 years ago
- 5b198e8 Commit version bump. by Brett Cannon · 18 years ago
- e0387ec SF patch #1670209, Remove Py_PROTO from socket by Pete Shinners. by Neal Norwitz · 18 years ago
- 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 18 years ago
- fa04e1a Fix breakage from removing exceptions module by Neal Norwitz · 18 years ago
- 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 18 years ago
- a4f9fc6 Add news about nonlocal statement by Jeremy Hylton · 18 years ago
- 17e43e5 Added some comments and docstrings. More is needed. by Guido van Rossum · 18 years ago
- b3f568f Remove a few stray tabs from bytesobject.c. by Georg Brandl · 18 years ago
- 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 18 years ago
- 88d65bd I assume this was supposed to be Py_ssize_t since there are no uses of plain ssize_t. by Neal Norwitz · 18 years ago
- 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 18 years ago
- 8b41c3d Add some XXX comments for Guido to look at. by Neal Norwitz · 18 years ago
- 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 18 years ago
- eff072c Fix some silly uses of KEYS, ITEMS, VALUES. by Guido van Rossum · 18 years ago
- b69b2e5 Remove duplicate refs to int from int/long unification presumably. (There might be more refs like these.) by Neal Norwitz · 18 years ago
- ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 18 years ago
- 44c5261 Tweak the fix for test_traceback since the fix for it to run on its own broke by Brett Cannon · 18 years ago
- dfb2a8a Fix a broken test in test_traceback where the module name was being tacked on by Brett Cannon · 18 years ago
- e36f2ba Add TODO by Neal Norwitz · 18 years ago
- 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 18 years ago
- f543348 Fix another loop over a dict that may change... :-( by Guido van Rossum · 18 years ago
- ce4a475 Add -d/--debug option to print traceback without -v/--verbose. by Guido van Rossum · 18 years ago
- 3959046 Make it so TypeError is raised if an instance of an object is put in an by Brett Cannon · 18 years ago
- 81fe341 The raw_input name was removed, but the implementation was moved to input. by Neal Norwitz · 18 years ago
- 3f54fea raw_input() really was removed, only input() was resurrected. by Neal Norwitz · 18 years ago
- 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 18 years ago
- f74225d You can no longer catch non-BaseException objects; TypeError is raised if such by Brett Cannon · 18 years ago
- 6baa4c4 Whoops, fix build breakage. There were still a few uses of the bool type. by Neal Norwitz · 18 years ago
- 3591bbe bool is no longer required, it was only used for the print statement by Neal Norwitz · 18 years ago
- a44f3a3 Merged revisions 53912-53951 via svnmerge from by Thomas Wouters · 18 years ago
- a88a033 Add raw_input() back, named input(). Revive the old unittests too. by Guido van Rossum · 18 years ago
- e8ef4e1 Add a partial list of limitations, stripping out some corresponding XXX comments. by Guido van Rossum · 18 years ago
- 4f7ac2e Change a test to be more predictable. by Guido van Rossum · 18 years ago
- 61c31b0 Another refleak, this time in PyLong_AsLong. Fixes leaks showing in by Georg Brandl · 18 years ago