| Commit message (Expand) | Author | Age | Files | Lines |
* | Describe contextlib module. (Done for today...) | Andrew M. Kuchling | 2006-04-16 | 1 | -19/+77 |
|
|
* | Write most of the 'writing context managers' section. I'd like comments on it, | Andrew M. Kuchling | 2006-04-16 | 1 | -43/+211 |
|
|
* | Make test_timeout not fail on systems with no dots in their fqdn. | Thomas Wouters | 2006-04-16 | 1 | -1/+1 |
|
|
* | Make test_warnings play nice with regrtest -R:: now that regrtest doesn't | Thomas Wouters | 2006-04-16 | 1 | -4/+4 |
|
|
* | Specialcase 'xs4all' (.nl/.net/.com/whatever else we have) as well as | Thomas Wouters | 2006-04-16 | 1 | -1/+2 |
|
|
* | This test no longer leaks, and test_generators sufficiently tests it to | Thomas Wouters | 2006-04-16 | 1 | -25/+0 |
|
|
* | Fix valgrind problem with invalid memory read | Neal Norwitz | 2006-04-16 | 1 | -2/+1 |
|
|
* | Fix memory leak | Neal Norwitz | 2006-04-16 | 1 | -1/+5 |
|
|
* | err is no longer used | Neal Norwitz | 2006-04-16 | 1 | -1/+1 |
|
|
* | Add missing DECREF to PyErr_WriteUnraisable(). That function reports | Thomas Wouters | 2006-04-15 | 3 | -21/+35 |
|
|
* | gen_del(): Looks like much this was copy/pasted from | Tim Peters | 2006-04-15 | 1 | -1/+1 |
|
|
* | Remove now-unused variables from tp_traverse and tp_clear methods. | Tim Peters | 2006-04-15 | 2 | -3/+0 |
|
|
* | Consolidate 'leak_test1' and 'refleaks_tests', since they both test for the | Thomas Wouters | 2006-04-15 | 1 | -17/+15 |
|
|
* | Add missing PyObject_GC_Track call, causing *some* itertools.tee objects to | Thomas Wouters | 2006-04-15 | 2 | -17/+7 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 20 | -340/+109 |
|
|
* | - Whitespace normalization | Thomas Wouters | 2006-04-15 | 1 | -12/+14 |
|
|
* | Fix typo. | Thomas Heller | 2006-04-15 | 1 | -1/+1 |
|
|
* | Fix for FreeBSD. Fixes http://python.org/sf/1470353. | Thomas Heller | 2006-04-15 | 1 | -2/+2 |
|
|
* | Zap ZAP. | Martin v. Löwis | 2006-04-15 | 1 | -25/+18 |
|
|
* | Patch #1470875: Building Python with MS Free Compiler. | Martin v. Löwis | 2006-04-15 | 4 | -0/+171 |
|
|
* | Remove partial change (don't edit, commit and think at the same time :P) | Thomas Wouters | 2006-04-15 | 1 | -1/+0 |
|
|
* | Re-instate backward compatibility by defining Py_CLEAR if it isn't | Thomas Wouters | 2006-04-15 | 1 | -0/+14 |
|
|
* | Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for | Thomas Wouters | 2006-04-15 | 8 | -57/+30 |
|
|
* | Clear dummy and emptyfrozenset, so that we don't have | Martin v. Löwis | 2006-04-15 | 1 | -2/+2 |
|
|
* | Fix sys.getobjects(0): we get a reference to the | Martin v. Löwis | 2006-04-15 | 1 | -0/+3 |
|
|
* | Unlink the structseq type from the global list of | Martin v. Löwis | 2006-04-15 | 1 | -0/+8 |
|
|
* | Patch #1191700: Adjust column alignment in bdb breakpoint lists. | Martin v. Löwis | 2006-04-15 | 2 | -3/+5 |
|
|
* | Patch #1191065: Fix preprocessor problems on systems where recvfrom | Martin v. Löwis | 2006-04-15 | 2 | -6/+11 |
|
|
* | Patch #1161914: Add python-config. | Martin v. Löwis | 2006-04-15 | 3 | -0/+56 |
|
|
* | frame_clear(): Explain why it's important to make the frame | Tim Peters | 2006-04-15 | 1 | -18/+11 |
|
|
* | frame_traverse(): Use the standard Py_VISIT macro. | Tim Peters | 2006-04-15 | 2 | -23/+21 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2006-04-15 | 1 | -13/+12 |
|
|
* | There were no comments explaining what Py_CLEAR() did or | Tim Peters | 2006-04-15 | 1 | -0/+34 |
|
|
* | Changed comments to make sense now that the LazyList-based | Tim Peters | 2006-04-15 | 1 | -4/+6 |
|
|
* | Fix SF#1470508: crash in generator cycle finalization. There were two | Phillip J. Eby | 2006-04-15 | 3 | -26/+22 |
|
|
* | Coverity-found bug: datetime_strptime() failed to check for NULL return from | Thomas Wouters | 2006-04-14 | 1 | -0/+4 |
|
|
* | Add an item; better crediting; fix error in SQL example; minor edits | Andrew M. Kuchling | 2006-04-14 | 1 | -32/+29 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-04-14 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-04-14 | 1 | -16/+16 |
|
|
* | Add a BufferedIncrementalEncoder class that can be used for implementing | Walter Dörwald | 2006-04-14 | 3 | -9/+169 |
|
|
* | Make error message less misleading for u"a..b".encode("idna"). | Walter Dörwald | 2006-04-14 | 1 | -3/+3 |
|
|
* | Patch #702933: Undocument PyObject_NEW, PyObject_NEW_VAR, | Martin v. Löwis | 2006-04-14 | 2 | -20/+1 |
|
|
* | Fix wrong attribute name. | Walter Dörwald | 2006-04-14 | 1 | -1/+1 |
|
|
* | Make raise statements PEP 8 compatible. | Walter Dörwald | 2006-04-14 | 1 | -11/+11 |
|
|
* | Patch #1045620: Prepend Modules/ before Setup in stdout. | Martin v. Löwis | 2006-04-14 | 2 | -5/+5 |
|
|
* | Patch #1470300: Port _hotshot to QNX4.25 port. | Martin v. Löwis | 2006-04-14 | 1 | -2/+2 |
|
|
* | Patch #1355883: Build Python-ast.c and Python-ast.h | Martin v. Löwis | 2006-04-14 | 2 | -35/+40 |
|
|
* | Show case: reference cycles involving only the ob_type field are rather | Armin Rigo | 2006-04-14 | 1 | -0/+13 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-04-14 | 1 | -1/+1 |
|
|
* | Patch #1324762: Change --with-cxx to --with-cxx-main. | Martin v. Löwis | 2006-04-14 | 6 | -356/+281 |
|
|