- 83cbb24 Oops, urllib may or may not already be loaded. by Neal Norwitz · 19 years ago
- 0917988 Fix SF #1442937, Bad Coroutine link by Neal Norwitz · 19 years ago
- d8cea79 Fix spurious test failure of test_socket_ssl when run in this order: by Neal Norwitz · 19 years ago
- 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 19 years ago
- 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 19 years ago
- 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 19 years ago
- 9589ee2 Tabify by Neal Norwitz · 19 years ago
- e92fba0 Get rid of run_err_mod(). It was only used in two places. by Neal Norwitz · 19 years ago
- 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 19 years ago
- 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 19 years ago
- b62c433 Remove test for timing (already not built since commented out in setup.py). by Neal Norwitz · 19 years ago
- 4b96c13 - Modernize code to use Py_ssize_t more intensively. by Hye-Shik Chang · 19 years ago
- ad9afcf Actually this file should have svn:eol-style CRLF since it's specifically by Barry Warsaw · 19 years ago
- c32886d Set eol-style to native -- doesn't appear to be any reason by Tim Peters · 19 years ago
- 39e11fb Whitespace normalization. by Tim Peters · 19 years ago
- 7356dcb SF #1442767, docs for os.statvfs miss f_bsize parameter. Will backport. by Neal Norwitz · 19 years ago
- 67dfb6f I think the test_logging failure on Solaris is timing related. We don't by Neal Norwitz · 19 years ago
- 10be2ea SF bug 1442442: LIST_APPEND optimization got lost in the AST merge. Add it back. by Neal Norwitz · 19 years ago
- d4e3035 Fix compiler breakage related to absolute imports by Neal Norwitz · 19 years ago
- 9742f27 Remove commented code by Neal Norwitz · 19 years ago
- eaed39f Hopefully this removes all vestiges of CO_GENERATOR_ALLOWED that can by Neal Norwitz · 19 years ago
- fa0cf4f Add support for absolute/relative imports and if/else expressions: by Thomas Wouters · 19 years ago
- 7e2ac25 Update for absolute/relative imports and ifelse-expressions. by Thomas Wouters · 19 years ago
- 7b4d6d5 Provide checkin access to Ronald and Bob by Neal Norwitz · 19 years ago
- 6143c54 Stop building timing module, it's old and deprecated by Neal Norwitz · 19 years ago
- 26f55a1 Add test_quopri to know spurious leakers by Neal Norwitz · 19 years ago
- 3909ff6 Text moved to PEP 339. by Brett Cannon · 19 years ago
- 5118517 Fix minor docstring typo. by Brett Cannon · 19 years ago
- f638630 Document the purpose of the struct _block members. by Tim Peters · 19 years ago
- 6fd92dc Added words about what PyArena_Malloc() does. by Tim Peters · 19 years ago
- cb9426b Beefed up description of what this does; new XXX. by Tim Peters · 19 years ago
- 5f4390f New XXX pointing out errors in the description of by Tim Peters · 19 years ago
- 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 19 years ago
- 8cfaa0e Trimmed trailing whitespace. by Tim Peters · 19 years ago
- 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 19 years ago
- 857b300 Explain why we use the unsigned int format for a signed int variable. by Thomas Wouters · 19 years ago
- 4954b38 Fix mismatch opening and closing quotes on a string. by Brett Cannon · 19 years ago
- d9cf85f Fix refleak if from __future__ import was not first by Neal Norwitz · 19 years ago
- 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 19 years ago
- e88d0a5 Spell threading write, not thraeading by Neal Norwitz · 19 years ago
- 83d1266 Properly fix Py_SAFE_DOWNCAST-triggerd bugs. by Thomas Wouters · 19 years ago
- 369092b Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_t by Thomas Wouters · 19 years ago
- 46872b1 Add a missing Py_DECREF to BaseException__unicode__ . by Brett Cannon · 19 years ago
- 5bde08d Fix failure of test_compiler.py when compiling test_contextlib.py. by Guido van Rossum · 19 years ago
- 3a5468e Update known issues to reflect reality by Neal Norwitz · 19 years ago
- 28f635b Remove duplicate entry by Neal Norwitz · 19 years ago
- 3096c53 Fix latex typos as spotted by George Yoshida. by Brett Cannon · 19 years ago
- 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 19 years ago
- 26cc63f Make Py_ssize_t-clean by Thomas Wouters · 19 years ago
- 695934a Make Py_ssize_t clean. by Thomas Wouters · 19 years ago
- d9bfeac Reformat the exception message by going through a list. by Martin v. Löwis · 19 years ago
- 5df2e61 Remove UNLESS. by Martin v. Löwis · 19 years ago
- 7087f78 Use Py_ssize_t for arithmetic on Py_ssize_t's, instead of unsigned ints. by Thomas Wouters · 19 years ago
- 5ddfe41 Whitespace normalization. by Tim Peters · 19 years ago
- a5fa2a8 Fix gcc (4.0.x) warning about use of uninitialized variable. by Thomas Wouters · 19 years ago
- 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
- 3ffa59b Rework channelnumber/samplesize detetion code's output variables a bit to by Thomas Wouters · 19 years ago
- 7464b43 Fix incompatible assignment warning from previous checkin. by Thomas Wouters · 19 years ago
- 7f401ef Fix gcc (4.0.x) warning about use of uninitialized variables. by Thomas Wouters · 19 years ago
- f86d1e8 Silence gcc (4.0.x) warning about use of uninitialized value. by Thomas Wouters · 19 years ago
- 54ac294 Document PEP 352 changes. Also added GeneratorExit. by Brett Cannon · 19 years ago
- 65b3dab Fix uninitialized value. (Why are we using bools instead of ints, like we do by Thomas Wouters · 19 years ago
- 9c54448 Fix brainfart. by Thomas Wouters · 19 years ago
- 1e365b2 Remove gcc (4.0.x) warning about uninitialized value by explicitly setting by Thomas Wouters · 19 years ago
- 9bc844e Make Py_ssize_t-clean. by Thomas Wouters · 19 years ago
- f98db65 Make Py_ssize_t-clean. by Thomas Wouters · 19 years ago
- 0b300be Fix more memory leaks. Will backport to 2.4. by Martin v. Löwis · 19 years ago
- c3547a3 Fix C99-ism, and add XXX to comment by Thomas Wouters · 19 years ago
- 15bfc3b Make failures in test cases print failing source file. by Martin v. Löwis · 19 years ago
- 20e192b Update for 'with' statement. by Brett Cannon · 19 years ago
- a9f0687 Fix a bug in nested() - if one of the sub-context-managers swallows the by Guido van Rossum · 19 years ago
- 6db0e00 Change GC refcount to Py_ssize_t. by Martin v. Löwis · 19 years ago
- 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 19 years ago
- c9066ca Fix warning that texcheck complained about. by Martin v. Löwis · 19 years ago
- e9357b2 Tabify and reflow some long lines. by Jeremy Hylton · 19 years ago
- 224003b Add missing DECREF. by Jeremy Hylton · 19 years ago
- 1f2dac5 markup glitch (spotted by George Yoshida) by Fredrik Lundh · 19 years ago
- fe8a566 Remove svn:mime-type (inexplicably set to a binary type), by Tim Peters · 19 years ago
- 1a57296 Set svn:eol-style to native. by Tim Peters · 19 years ago
- 6b4ed74 Fix parsing of exception_hierarchy.txt when a platform-specific exception is by Brett Cannon · 19 years ago
- 3b19754 Document new Py_ssize_t API. by Martin v. Löwis · 19 years ago
- 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
- 572a9f3 Use %zd format characters for Py_ssize_t types. by Thomas Wouters · 19 years ago
- 7c187bc Remove redundant isinstance() check. by Thomas Wouters · 19 years ago
- 7f59732 Put back the essence of Jeremy's original XXX comment. by Thomas Wouters · 19 years ago
- 497114e Add tool to check documentation against declaration. by Martin v. Löwis · 19 years ago
- 29fafd8 Make documentation match the implementation. by Martin v. Löwis · 19 years ago
- 67d70eb Repair mangled code in the Windows flavor of posix__getfullpathname(). by Tim Peters · 19 years ago
- acde734 Add Misc/NEWS entry for Misc/Vim/vim_syntax.py . Also use conditional by Brett Cannon · 19 years ago
- bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
- 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 19 years ago
- 66485ae Remove unused field. by Martin v. Löwis · 19 years ago
- e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 19 years ago
- 68bc4f9 Py_ssize_t-ify. by Thomas Wouters · 19 years ago
- 9d63cca Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on by Thomas Wouters · 19 years ago
- ca82a8b Move #include to outside "extern C {}", before Tim figures out it'll break VC++. by Thomas Wouters · 19 years ago
- 1f1c16a Regenerate. by Thomas Wouters · 19 years ago
- 53d960c Don't pollute namespace as bad as before. All the types are static now. by Neal Norwitz · 19 years ago
- 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 19 years ago
- 6cba256 Change non-ASCII warning into a SyntaxError. by Martin v. Löwis · 19 years ago