- b4e2f76 Use unicode by Neal Norwitz · 17 years ago
- a369c5a Use unicode by Neal Norwitz · 17 years ago
- 1978470 Fix typo in comment by Neal Norwitz · 17 years ago
- b908126 Reorder code and decls so it's compilable with gcc 2.96 (C89). by Guido van Rossum · 17 years ago
- 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
- e4dc324 Use unicode for AST attributes by Neal Norwitz · 17 years ago
- aefab1e Use unicode by Neal Norwitz · 17 years ago
- e0a0a6e Since PyUnicode_AsString is a public API, don't just assert, but do by Neal Norwitz · 17 years ago
- b0d2633 Use unicode strings by Neal Norwitz · 17 years ago
- f308132 Add const to input string parameters by Neal Norwitz · 17 years ago
- fa06e5f Whoops, not sure how I screwed up the name. Now builds and passes the test. by Neal Norwitz · 17 years ago
- 8d3654d Use unicode and add a "test" for syslog by Neal Norwitz · 17 years ago
- a401bbe Add a few mixed-mode (set vs. dict view) comparisons. by Guido van Rossum · 17 years ago
- cf2ce36 Keir Mierle's improved tests for dict view containment tests. by Guido van Rossum · 17 years ago
- 1d71996 Add some mixed operations between sets and dict views. by Guido van Rossum · 17 years ago
- be53471 Add unit tests for set ops on dict.items(). by Guido van Rossum · 17 years ago
- 523259b Keir Mierle's set operations for dict views (keys/items only of course). by Guido van Rossum · 17 years ago
- eb8b3a6 Use unicode for password modules by Neal Norwitz · 17 years ago
- 6e024b3 Use the str builtin by Neal Norwitz · 17 years ago
- 41103bf Ensure that code object names (co_name) are unicode. by Neal Norwitz · 17 years ago
- a5d16a3 Use unicode for error messages of duplicate args by Neal Norwitz · 17 years ago
- 808c7d8 Use unicode for reference (is there any way to build this module) by Neal Norwitz · 17 years ago
- aac530c Patch with Keir Mierle: add rich comparisons between dict views and sets, by Guido van Rossum · 17 years ago
- c3ee950 follow up to bug 1007 commit. by Gregory P. Smith · 17 years ago
- 178fefb applies the better dbm and shelve related unittests. bug 1007 from larryhastings by Gregory P. Smith · 17 years ago
- 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
- b382b84 Add const to some strings that are not modified by Neal Norwitz · 17 years ago
- cd79596 Use unicode for much of errors. by Neal Norwitz · 17 years ago
- 11e065b Convert test_pkg to use unittest. by Collin Winter · 17 years ago
- 70e7980 r698@Silves: collinwinter | 2007-08-24 10:57:15 -0700 by Collin Winter · 17 years ago
- 75d38e9 Whitespace cleanup. by Guido van Rossum · 17 years ago
- 7f19f66 Clean up after a merge left behind old except clause syntax. by Guido van Rossum · 17 years ago
- 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
- 07aec08 reapply of r57378 to fix bug 1725856 by Gregory P. Smith · 17 years ago
- fc5fafc Fix logic bug that triggered assert. by Guido van Rossum · 17 years ago
- 37410aa Make uuid.py thread-safe. Fix by Yuri Ginsburg. by Guido van Rossum · 17 years ago
- fd53fd6 Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away. by Guido van Rossum · 17 years ago
- eda12ec Patch by Ero Carrera to get rid of PyString in timemodule.c. by Guido van Rossum · 17 years ago
- 28bbe42 math.floor(<int>) now returns the argument, by Guido van Rossum · 17 years ago
- 9cfc62c cPickle was removed by Neal Norwitz · 17 years ago
- 15d3d04 Before calling _PyType_Lookup() the type needs to be initialized. by Guido van Rossum · 17 years ago
- 0d94203 Use unicode for the errno.errorcode names by Neal Norwitz · 17 years ago
- 9af3ae4 Return unicode for a key name from a wide character by Neal Norwitz · 17 years ago
- c1786ea Use UTF-8 for a docstring that contains non-ASCII chars. by Neal Norwitz · 17 years ago
- 10ab4ae Patch by Keir Mierle so that sets can be compared to other objects that know by Guido van Rossum · 17 years ago
- 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
- 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
- 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
- 0f3cff5 Fix test_shelve when it uses dumbdbm. Found and fixed by Larry Hastings. by Neal Norwitz · 17 years ago
- 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
- d6d2f2f Use unicode. by Neal Norwitz · 17 years ago
- fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
- f9e115a Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
- 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
- 361ed15 Require strict bytes objects for all bsddb.db input values. by Gregory P. Smith · 17 years ago
- e5a8dc6 docstring cut n paste correction by Gregory P. Smith · 17 years ago
- 9a3b014 os.getcwd() is returning str8; sys.path items are str. by Kurt B. Kaiser · 17 years ago
- e071277 Conform to py3k dict.{keys, items, values} with some advice from 2b3 by Kurt B. Kaiser · 17 years ago
- 460add4 Correction to the xmlrpc docs by John Reese and Jacques Frechet. by Guido van Rossum · 17 years ago
- ad66742 Fix raise with 2to3 by Kurt B. Kaiser · 17 years ago
- e45be28 Convert raise statements in Lib/plat-{mac,os2emx}. by Collin Winter · 17 years ago
- cfe02a4 Fixes by John Reese and Jacques Frechet that make test_xmlrpc pass. by Guido van Rossum · 17 years ago
- 2523621 Change the error reporting when an invalid string is encountered to avoid by Guido van Rossum · 17 years ago
- ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
- 1dd46a0 Convert raise statements in Mac/. by Collin Winter · 17 years ago
- a817e58 Convert raise statements in Tools/. by Collin Winter · 17 years ago
- 2d7f6a0 Switch to absolute imports to support direct execution of modules. Many by Kurt B. Kaiser · 17 years ago
- 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
- a62b45c Use python -E instead of undef PYTHONPATH. by Guido van Rossum · 17 years ago
- a65e94c Convert raise statements in bsddb. by Collin Winter · 17 years ago
- 865ea89 Fix raise statements in hotshot. by Collin Winter · 17 years ago
- e405037 Fix typo in comment by Kurt B. Kaiser · 17 years ago
- 7a4dbaf Replace file() with open() by Kurt B. Kaiser · 17 years ago
- 2d726df Use buffer of type 'bytes' to accumulate from socket. by Kurt B. Kaiser · 17 years ago
- e20a2c1 stop leaving log.0000001 __db.00* and xxx.db turds in developer by Gregory P. Smith · 17 years ago
- d5a5f5d Patch #1774414: make it possible to use SVK to develop Python. by Collin Winter · 17 years ago
- 4d9620a Fix bug introduced at r54854 to mass replace string fcns with methods :-) by Kurt B. Kaiser · 17 years ago
- 0e6012c Eat some low hanging fruit... let the test suite run. by Gregory P. Smith · 17 years ago
- ea03c11 Fix some debugging print statements by Kurt B. Kaiser · 17 years ago
- b7f136e Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass, by Guido van Rossum · 17 years ago
- bfc672b Remove some old comments adequately covered in the code. by Kurt B. Kaiser · 17 years ago
- 3a4e24b 1. Fix File Open: don't encode filename to UTF-8 bytes by Kurt B. Kaiser · 17 years ago
- 23cfc98 Convert sunaudio.py to bytes. (It has no unit test of its own!) by Guido van Rossum · 17 years ago
- 003b098 eliminate "from ... import *" in a function. by Kurt B. Kaiser · 17 years ago
- 3741eff Fall back to 'ascii' encoding if sys.getfilesystemencoding() returns by Lars Gustäbel · 17 years ago
- 4566c71 Fix fallout from making __private variables in threading.py _protected. by Guido van Rossum · 17 years ago
- 360f2f8 Make runtests.py a little more versatile: support -x, and arbitrary flags by Guido van Rossum · 17 years ago
- c1e315d Rename __whatever variables defined by ABCMeta to _abc_whatever, so as by Guido van Rossum · 17 years ago
- d064899 Get rid of all __private variables and methods in the threading module. by Guido van Rossum · 17 years ago
- 61e21b5 Merged revisions 57152-57220 via svnmerge from by Guido van Rossum · 17 years ago
- 7d6068e Remove note about compatibility layer, as the compatibility layer was removed. by Jeremy Hylton · 17 years ago
- b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
- 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
- 666bb41 SF #1777057, fix memoryview('test') so it works in debug mode too. by Neal Norwitz · 17 years ago
- 9604286 Fix xmlrpc unittest. While it now passes on Linux, it still fails by Hye-Shik Chang · 17 years ago
- faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
- 1836358 Fix an unfinished though in my own test code. by Guido van Rossum · 17 years ago
- 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
- b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
- 3de862d Make the cleanup between -R passes deal better with ABC registries, by Guido van Rossum · 17 years ago