| Commit message (Expand) | Author | Age | Files | Lines |
* | TestIterators: Tim Peters suggests a more succinct spelling of | Barry Warsaw | 2001-10-04 | 1 | -12/+4 |
|
|
* | More test data for test_email.py | Barry Warsaw | 2001-10-04 | 2 | -0/+49 |
|
|
* | test_header_splitter(), test_body_line_iterator(): Move the test data | Barry Warsaw | 2001-10-04 | 1 | -70/+32 |
|
|
* | Give me back my page breaks. | Barry Warsaw | 2001-10-04 | 12 | -22/+22 |
|
|
* | Add note about profiling. | Guido van Rossum | 2001-10-04 | 1 | -0/+15 |
|
|
* | Script arguments localhost:localport and remotehost:remoteport are now | Barry Warsaw | 2001-10-04 | 1 | -18/+28 |
|
|
* | Add various typecasts (back and forth from char * to unsigned char *) | Greg Ward | 2001-10-04 | 1 | -5/+5 |
|
|
* | Remove a couple of unused local variables (bug #445960, compiler warnings | Greg Ward | 2001-10-04 | 1 | -4/+2 |
|
|
* | Updated to reflect the rationalized profiler event reporting. | Fred Drake | 2001-10-04 | 1 | -46/+27 |
|
|
* | Rationalize the events passed to the profiler (no changes for the tracer). | Fred Drake | 2001-10-04 | 2 | -10/+6 |
|
|
* | Add note about profile fix. | Guido van Rossum | 2001-10-04 | 1 | -0/+5 |
|
|
* | Make clear that tuple() accepts the same kind of arguments as list(). | Tim Peters | 2001-10-04 | 1 | -1/+3 |
|
|
* | Added a little type/class NEWS. | Tim Peters | 2001-10-04 | 1 | -0/+6 |
|
|
* | This test relied on hard tab characters, so failed after whitespace | Tim Peters | 2001-10-04 | 1 | -5/+5 |
|
|
* | class_docstrings(): The new-style class tests should use new-style | Tim Peters | 2001-10-04 | 1 | -4/+4 |
|
|
* | type_new(): cast PyObject_MALLOC's result to char*, for clarity. | Tim Peters | 2001-10-04 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-10-04 | 18 | -65/+65 |
|
|
* | SF bug [#467331] ClassType.__doc__ always None. | Tim Peters | 2001-10-04 | 3 | -7/+59 |
|
|
* | Hopefully fix the profiler right. Add a test suite that checks that | Guido van Rossum | 2001-10-04 | 3 | -18/+136 |
|
|
* | Expand the documentation of the low-level tracing/profiling interface. | Fred Drake | 2001-10-03 | 1 | -2/+23 |
|
|
* | Add some more test cases to be sure we do the right thing in various cases. | Fred Drake | 2001-10-03 | 1 | -0/+117 |
|
|
* | Undo previous patch; it did not quite work out. | Fred Drake | 2001-10-03 | 1 | -1/+1 |
|
|
* | Fix a spelling error that has been bugging me for longer than I care to admit. | Greg Ward | 2001-10-03 | 1 | -1/+1 |
|
|
* | Set .addr in a few more places (patch approved by Sam Rushing) | Andrew M. Kuchling | 2001-10-03 | 1 | -0/+2 |
|
|
* | dynamics(): add a dummy __getattr__ method to the C class so that the | Guido van Rossum | 2001-10-03 | 1 | -0/+5 |
|
|
* | typeobject.c, slot_tp_gettattr_hook(): fix the speedup hack -- the | Guido van Rossum | 2001-10-03 | 1 | -0/+12 |
|
|
* | remove empty __del__ method from BaseRequestHandler to avoid cyclic garbage | Skip Montanaro | 2001-10-03 | 1 | -3/+0 |
|
|
* | *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following | Guido van Rossum | 2001-10-03 | 3 | -40/+96 |
|
|
* | Made the classmethod docstring test a bit less trivial. | Tim Peters | 2001-10-03 | 1 | -3/+3 |
|
|
* | SF bug [#467336] doctest failures w/ new-style classes. | Tim Peters | 2001-10-03 | 4 | -8/+167 |
|
|
* | Mark treatment of binary operators for __rop__-before-__op__ as done. | Guido van Rossum | 2001-10-03 | 1 | -5/+15 |
|
|
* | call_method(), call_maybe(): fix a performance bug: the argument | Guido van Rossum | 2001-10-03 | 1 | -8/+3 |
|
|
* | Note removal of Demo/dns, point to PyDNS. | Guido van Rossum | 2001-10-02 | 1 | -1/+5 |
|
|
* | Removed Demo/dns -- see sf.net/projects/pydns/ instead. | Guido van Rossum | 2001-10-02 | 6 | -717/+0 |
|
|
* | SF patch [#466616] Exclude imported items from doctest. | Tim Peters | 2001-10-02 | 1 | -7/+13 |
|
|
* | SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. | Tim Peters | 2001-10-02 | 2 | -2/+7 |
|
|
* | Add Garbage Collection support to new-style classes (not yet to their | Guido van Rossum | 2001-10-02 | 5 | -39/+237 |
|
|
* | CVS patch [#466628] Doc changes for doctest patch (#466616), from | Tim Peters | 2001-10-02 | 1 | -25/+2 |
|
|
* | pickles(): | Guido van Rossum | 2001-10-02 | 1 | -18/+22 |
|
|
* | The error reporting here was a bit sparse. In verbose mode, the code | Guido van Rossum | 2001-10-02 | 1 | -30/+24 |
|
|
* | Under certain conditions (sometimes triggered by the test suite), | Guido van Rossum | 2001-10-02 | 1 | -0/+2 |
|
|
* | Correct the URL for the license (only used when the LICENSE[.txt] file | Guido van Rossum | 2001-10-02 | 1 | -1/+1 |
|
|
* | Update reference to pydns. | Guido van Rossum | 2001-10-02 | 1 | -5/+3 |
|
|
* | SF patch [#466616] Exclude imported items from doctest, | Tim Peters | 2001-10-02 | 3 | -53/+76 |
|
|
* | Fredrik tells me the truefalse parameter for boolean() is not part of the | Fred Drake | 2001-10-01 | 1 | -5/+3 |
|
|
* | Removed stray backslash (a typo -- my fault). | Tim Peters | 2001-10-01 | 1 | -1/+1 |
|
|
* | The description of dictionary comparison was out of date. Rather than | Tim Peters | 2001-10-01 | 1 | -9/+12 |
|
|
* | SF patch [#466353] Py_HUGE_VAL on BeOS for Intel. | Tim Peters | 2001-10-01 | 1 | -1/+5 |
|
|
* | restored 1.5.2 compatibility | Fredrik Lundh | 2001-10-01 | 1 | -46/+39 |
|
|
* | SF patch [#466877] SIGBREAK is missing from signal module. | Tim Peters | 2001-10-01 | 3 | -0/+26 |
|
|