2001-10-08 |
Jeremy Hylton | Replace all instances of err.strerror with err. |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Fred Drake | Added tests that check getboolean() with the newly... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Tim Peters | type_subclasses(): debug build was broken due to typo... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Guido van Rossum | Change all occurrences of verify(x == y) into vereq... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Fred Drake | Update the description of getboolean() to reflect the... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Jack Jansen | Mods by Alexandre Parenteau to allow embedding programs... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Jack Jansen | Brought up to date with the current state of affairs. |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Guido van Rossum | Keep track of a type's subclasses (subtypes), in tp_sub... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Jack Jansen | Mac OS X build instructions talked about --without... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Martin v. Löwis | Do not add -shared to linker_so. Any necessary options... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Martin v. Löwis | Provide explicit program when trying to link pthread_cr... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Jack Jansen | Added declarations for PyMac_SetConsoleHandler, PyMan_D... |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Jack Jansen | Added weakrefobject.c and regenerated .exp files. |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Tim Peters | Put the deprecated .ignore() method back where it was. |
commit | commitdiff | tree | snapshot |
2001-10-08 |
Tim Peters | Widespread random code cleanup. |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Guido van Rossum | Implement isinstance(x, (A, B, ...)). Note that we... |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Steven M. Gava | merged port binding error message patch |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Steven M. Gava | merged win spawn patch |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Steven M. Gava | merged status bar packing patch |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Martin v. Löwis | Only close sockets if they have been created. Reported... |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Tim Peters | Typo repair in comment. |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Martin v. Löwis | Support OpenUNIX like UnixWare. |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Tim Peters | Guido points out that the comments for self.cur[2]... |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Martin v. Löwis | Use AC_TRY_RUN for checking for -Kpthread. |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Tim Peters | At Guido's request, changed the code that's conceptuall... |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Tim Peters | Repair some longstanding comment errors: |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Tim Peters | Guido suggests, and I agree, to insist that SIZEOF_VOID... |
commit | commitdiff | tree | snapshot |
2001-10-07 |
Tim Peters | Remove code and docs for the OldProfile and HotProfile... |
commit | commitdiff | tree | snapshot |
2001-10-06 |
Tim Peters | _PyObject_VAR_SIZE: always round up to a multiple... |
commit | commitdiff | tree | snapshot |
2001-10-06 |
Tim Peters | Repaired the debug Windows deaths in test_descr, by... |
commit | commitdiff | tree | snapshot |
2001-10-06 |
Tim Peters | _PyObject_GetDictPtr(): |
commit | commitdiff | tree | snapshot |
2001-10-06 |
Tim Peters | _PyObject_GC_Malloc(): split a complicated line in... |
commit | commitdiff | tree | snapshot |
2001-10-06 |
Fred Drake | Update the documentation to reflect the changes to... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Tim Peters | The fix to profile semantics broke the miserable but... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Tim Peters | Teach Windows how to build the new weakref module. |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Remove bogus declaration. |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Add documentation for the public API for weak reference... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Adjust the _weakref module to use the public API for... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | PyObject_ClearWeakRefs() is now a real function instead... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Add dependencies for the weakref object. |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Include the weakref object interface. |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | ReferenceError is now built-in, so pick it up from... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | The weak reference implementation, separated from the... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | weakref.ReferenceError becomes a built-in exception... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Guido van Rossum | Martijn Pieters convinced me that when readline() strip... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Guido van Rossum | Enable GC for new-style instances. This touches lots... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Thomas Heller | With Andrew's blessing: distutils version number is... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Tim Peters | Introduced the oddly-missing PyList_CheckExact(), and... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Thomas Heller | Explicitely list the metadata attributes to show |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Tim Peters | Get rid of unique local ISSTRICTINT macro in favor... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Tim Peters | A regexp example was rendered as |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Barry Warsaw | SMTPServer.__init__(): Print the start information... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Guido van Rossum | Remove false statement about running make in the Module... |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Remove some long-unsupported Mac OS modules. |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Fred Drake | Frankly, I'd like my "L." as well! |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Guido van Rossum | Another contributor. |
commit | commitdiff | tree | snapshot |
2001-10-05 |
Andrew M. Kuchling | Fix typo in docstring |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Martin v. Löwis | Document addition of chroot. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Martin v. Löwis | Add chroot call. Implements feature #459267. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Fred Drake | Update a couple of old addresses that point to CNRI. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Fred Drake | Non-failing test for SF bug #467059. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Guido van Rossum | Apply modified SF patch 467580: ConfigParser.getboolean... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Fred Drake | run_suite(): If testclass is not available, provide... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Guido van Rossum | Make new classes dynamic by default. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | Changed the reindenter to strip only trailing spaces... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Fred Drake | Fix bug in profiler modifications detected only in... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Barry Warsaw | TestIterators: Tim Peters suggests a more succinct... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Barry Warsaw | More test data for test_email.py |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Barry Warsaw | test_header_splitter(), test_body_line_iterator():... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Barry Warsaw | Give me back my page breaks. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Guido van Rossum | Add note about profiling. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Barry Warsaw | Script arguments localhost:localport and remotehost... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Greg Ward | Add various typecasts (back and forth from char * to... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Greg Ward | Remove a couple of unused local variables (bug #445960... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Fred Drake | Updated to reflect the rationalized profiler event... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Fred Drake | Rationalize the events passed to the profiler (no chang... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Guido van Rossum | Add note about profile fix. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | Make clear that tuple() accepts the same kind of argume... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | Added a little type/class NEWS. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | This test relied on hard tab characters, so failed... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | class_docstrings(): The new-style class tests should... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | type_new(): cast PyObject_MALLOC's result to char... |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Tim Peters | SF bug [#467331] ClassType.__doc__ always None. |
commit | commitdiff | tree | snapshot |
2001-10-04 |
Guido van Rossum | Hopefully fix the profiler right. Add a test suite... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Fred Drake | Expand the documentation of the low-level tracing/profi... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Fred Drake | Add some more test cases to be sure we do the right... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Fred Drake | Undo previous patch; it did not quite work out. |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Greg Ward | Fix a spelling error that has been bugging me for longe... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Andrew M. Kuchling | Set .addr in a few more places (patch approved by Sam... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Guido van Rossum | dynamics(): add a dummy __getattr__ method to the C... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Guido van Rossum | typeobject.c, slot_tp_gettattr_hook(): fix the speedup... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Skip Montanaro | remove empty __del__ method from BaseRequestHandler... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Guido van Rossum | *EXPERIMENTAL* speedup of slot_sq_item. This sped... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Tim Peters | Made the classmethod docstring test a bit less trivial. |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Tim Peters | SF bug [#467336] doctest failures w/ new-style classes. |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Guido van Rossum | Mark treatment of binary operators for __rop__-before... |
commit | commitdiff | tree | snapshot |
2001-10-03 |
Guido van Rossum | call_method(), call_maybe(): fix a performance bug... |
commit | commitdiff | tree | snapshot |
2001-10-02 |
Guido van Rossum | Note removal of Demo/dns, point to PyDNS. |
commit | commitdiff | tree | snapshot |
2001-10-02 |
Guido van Rossum | Removed Demo/dns -- see sf.net/projects/pydns/ instead. |
commit | commitdiff | tree | snapshot |
next |