| Commit message (Expand) | Author | Age | Files | Lines |
* | PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is a | Guido van Rossum | 2001-12-04 | 1 | -20/+72 |
|
|
* | A tiny but useful script that fires off a search on Google. | Guido van Rossum | 2001-12-04 | 1 | -0/+22 |
|
|
* | Patch by Jason Harper to allow IDE to work again under MacOS 8.1. Plus appear... | Jack Jansen | 2001-12-04 | 3 | -35/+145 |
|
|
* | The parser now also needs to link with mysnprintf.o. | Guido van Rossum | 2001-12-04 | 1 | -0/+1 |
|
|
* | PyGrammar_LabelRepr(): sprintf -> PyOS_snprintf. | Tim Peters | 2001-12-04 | 1 | -2/+2 |
|
|
* | The parser doesn't need its own implementation of assert, and having its | Tim Peters | 2001-12-04 | 8 | -38/+18 |
|
|
* | Update docs to reflect new compile() and compileFile() | Jeremy Hylton | 2001-12-04 | 1 | -3/+18 |
|
|
* | SF bug #488687 reported by Neal Norwitz | Jeremy Hylton | 2001-12-04 | 2 | -1/+2 |
|
|
* | More sprintf -> PyOS_snprintf. | Tim Peters | 2001-12-04 | 2 | -3/+4 |
|
|
* | Slightly improved indexing for the string-% operator, thanks to comments | Fred Drake | 2001-12-03 | 1 | -1/+2 |
|
|
* | Update lambda description to reflect nested scopes. This was noted by | Fred Drake | 2001-12-03 | 1 | -4/+2 |
|
|
* | Added documentation on the ScrolledText module. | Fred Drake | 2001-12-03 | 1 | -0/+37 |
|
|
* | Oops! Forgot the value parameter. | Andrew M. Kuchling | 2001-12-03 | 1 | -1/+1 |
|
|
* | Add __delete__ method of properties | Andrew M. Kuchling | 2001-12-03 | 1 | -1/+4 |
|
|
* | posix_execve(), posix_spawnve(), posix_putenv(): | Tim Peters | 2001-12-03 | 1 | -6/+14 |
|
|
* | Fix the final two issues in Armin Rigo's SF bug #488477: apply_slice() | Guido van Rossum | 2001-12-03 | 1 | -4/+10 |
|
|
* | unpack_iterable(): Add a missing DECREF in an error case. Reported by | Guido van Rossum | 2001-12-03 | 2 | -0/+24 |
|
|
* | removed some dead code. | Just van Rossum | 2001-12-03 | 1 | -15/+0 |
|
|
* | decode(), encode(): Accepting the minor optimizations from SF patch | Barry Warsaw | 2001-12-03 | 1 | -6/+7 |
|
|
* | function_call(): Remove a bogus (and I mean *really* bogus) call to | Guido van Rossum | 2001-12-03 | 1 | -1/+0 |
|
|
* | Add a scalar product to the example list comprehensions based on a suggestion | Fred Drake | 2001-12-03 | 1 | -0/+2 |
|
|
* | LIBSUBDIRS: Add test/data so it gets installed and test_email.py can | Barry Warsaw | 2001-12-03 | 1 | -2/+2 |
|
|
* | Minor clarification of the zip() description, based on a comment sent to | Fred Drake | 2001-12-03 | 1 | -1/+1 |
|
|
* | Make no assumption about how modules are built when referring to them; this | Fred Drake | 2001-12-03 | 1 | -4/+3 |
|
|
* | Re-word the intro slightly to avoid reader misunderstanding: strings are not | Fred Drake | 2001-12-03 | 1 | -30/+24 |
|
|
* | Removed old and broken AE-based browser controller, use webbrowser.py | Just van Rossum | 2001-12-03 | 1 | -31/+11 |
|
|
* | Clarify that the Python runtime may behave mysteriously when an exception | Fred Drake | 2001-12-03 | 1 | -4/+12 |
|
|
* | Remove most references to __members__ and __methods__, leaving only one pair | Fred Drake | 2001-12-03 | 4 | -20/+10 |
|
|
* | Convert to using string methods instead of the string module. | Fred Drake | 2001-12-03 | 1 | -29/+25 |
|
|
* | Add a test that makes sure unclosed entity references are handled consitently. | Fred Drake | 2001-12-03 | 1 | -0/+6 |
|
|
* | PyErr_Format() does not return a new reference; it always returns NULL. | Fred Drake | 2001-12-03 | 1 | -7/+5 |
|
|
* | Fix of SF bug #475877 (Mutable subtype instances are hashable). | Guido van Rossum | 2001-12-03 | 3 | -3/+41 |
|
|
* | _tryorder should always be a list, then the problem Jack had to fix in | Guido van Rossum | 2001-12-03 | 1 | -5/+4 |
|
|
* | New about super. | Guido van Rossum | 2001-12-03 | 1 | -0/+15 |
|
|
* | Missing comma in tuple initializer caused webbrowser.open() not to work at | Jack Jansen | 2001-12-03 | 1 | -1/+1 |
|
|
* | Address SF patch #480716 as well as related issues. | Guido van Rossum | 2001-12-03 | 2 | -18/+87 |
|
|
* | Add Greg Chapman. | Guido van Rossum | 2001-12-03 | 1 | -0/+1 |
|
|
* | Add more inline documentation, as contributed in #487906. | Martin v. Löwis | 2001-12-03 | 1 | -3/+8 |
|
|
* | Clean up some material that is not part of the standard documentation. | Fred Drake | 2001-12-03 | 1 | -43/+7 |
|
|
* | PyString_FromFormatV, string_repr: document why these use sprintf | Tim Peters | 2001-12-03 | 1 | -5/+16 |
|
|
* | Fix for SF bug #485678. | Guido van Rossum | 2001-12-03 | 1 | -0/+6 |
|
|
* | mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to | Tim Peters | 2001-12-03 | 4 | -94/+78 |
|
|
* | further work on new configuration system, specifically, | Steven M. Gava | 2001-12-03 | 3 | -66/+110 |
|
|
* | A system() lookalike that sends commands to ToolServer, by Daniel Brotsky. Th... | Jack Jansen | 2001-12-03 | 1 | -0/+67 |
|
|
* | Fix for SF bug #485678. | Guido van Rossum | 2001-12-03 | 1 | -1/+1 |
|
|
* | Changed logic for finding python home in Mac OS X framework Pythons. | Jack Jansen | 2001-12-02 | 1 | -47/+45 |
|
|
* | Added tests expected to be skipped on Mac OS X. | Jack Jansen | 2001-12-02 | 1 | -0/+21 |
|
|
* | Check for NULL return value of PyList_New (follow-up to patch #486743). | Martin v. Löwis | 2001-12-02 | 1 | -0/+3 |
|
|
* | Patch 487906: update inline docs. | Martin v. Löwis | 2001-12-02 | 1 | -13/+21 |
|
|
* | Another name. | Fred Drake | 2001-12-02 | 1 | -0/+1 |
|
|