| Commit message (Expand) | Author | Age | Files | Lines |
* | Complete the addition of libthreading.tex. (Isn't it annoying that | Guido van Rossum | 1998-07-20 | 2 | -0/+5 |
|
|
* | Add missing initializer for self._backupfilename. Due to Ralph Butler. | Guido van Rossum | 1998-07-20 | 1 | -0/+1 |
|
|
* | Modest speed improvement to escape() by Piet van Oostrum. | Guido van Rossum | 1998-07-20 | 1 | -5/+5 |
|
|
* | Patch by Piet van Oostrum to avoid calculating with the result of | Guido van Rossum | 1998-07-20 | 1 | -6/+5 |
|
|
* | Add libthreading.tex to LIBFILES. | Fred Drake | 1998-07-20 | 1 | -1/+1 |
|
|
* | Added libthreading.tex ; this is mostly the contents of threading_api.py, | Andrew M. Kuchling | 1998-07-20 | 1 | -0/+561 |
|
|
* | Measure performance of sub(), split(), findall(). | Guido van Rossum | 1998-07-17 | 1 | -0/+23 |
|
|
* | Add test for failure of the getattr call in pcre_expand() -- it used | Guido van Rossum | 1998-07-17 | 1 | -0/+4 |
|
|
* | Get a 3- to 4-fold speedup for sub()/subn(), split() and findall() by | Guido van Rossum | 1998-07-17 | 1 | -38/+71 |
|
|
* | Added tests for findall(). | Guido van Rossum | 1998-07-17 | 1 | -1/+21 |
|
|
* | Eric Raymond documents two already-existing functions (bmp, png). | Guido van Rossum | 1998-07-17 | 1 | -0/+2 |
|
|
* | I_getattr(), | Fred Drake | 1998-07-17 | 1 | -1/+7 |
|
|
* | Add tests for array self-assigns. (This one has no relevance to JPython.) | Guido van Rossum | 1998-07-16 | 1 | -1/+28 |
|
|
* | Add tests for list self-assigns. (Sorry, this should have been here | Guido van Rossum | 1998-07-16 | 1 | -0/+13 |
|
|
* | Avoid using calloc(). This triggered an obscure bug on multiprocessor | Guido van Rossum | 1998-07-16 | 1 | -1/+2 |
|
|
* | From: Nicolas CHAUVAT <nico@caesium.fr> | Guido van Rossum | 1998-07-16 | 1 | -1/+1 |
|
|
* | Show how to do switchable panels. | Guido van Rossum | 1998-07-15 | 1 | -0/+54 |
|
|
* | Tk.__init__(): In computing baseName, add ".pyo" to list of dropped | Fred Drake | 1998-07-15 | 1 | -1/+2 |
|
|
* | Temporarily get rid of the registration of Tcl_Finalize() as a | Guido van Rossum | 1998-07-14 | 1 | -0/+5 |
|
|
* | Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) | Guido van Rossum | 1998-07-13 | 1 | -15/+37 |
|
|
* | Added a delete() method to menu entries. Only the last entry of a menu | Jack Jansen | 1998-07-13 | 1 | -1/+14 |
|
|
* | Added prototypes for the code resource routines, and for Pstring | Jack Jansen | 1998-07-13 | 2 | -1/+4 |
|
|
* | If the preference filename resource is empty don't try to open or | Jack Jansen | 1998-07-13 | 1 | -4/+13 |
|
|
* | All import-related code has moved to macimport.c. | Jack Jansen | 1998-07-13 | 2 | -224/+416 |
|
|
* | Added macimport.c to various files | Jack Jansen | 1998-07-13 | 14 | -5028/+5127 |
|
|
* | Add an empty PYTHONPREFSFILE STR resource, so frozen applications | Jack Jansen | 1998-07-13 | 1 | -81/+82 |
|
|
* | Add special case to PySequence_List() so that list() of a list is | Guido van Rossum | 1998-07-10 | 1 | -0/+6 |
|
|
* | Small changes to map() and filter(): | Guido van Rossum | 1998-07-10 | 1 | -5/+8 |
|
|
* | Changed PySequence_List() and PySequence_Tuple() to support | Guido van Rossum | 1998-07-10 | 1 | -27/+38 |
|
|
* | Added a function SetUserItemHandler: this takes a function(dialog, | Jack Jansen | 1998-07-10 | 2 | -0/+110 |
|
|
* | Add macros for direct access to the members of CFunction objects. | Guido van Rossum | 1998-07-10 | 1 | -0/+9 |
|
|
* | Move the definition of PyMethodObject to classobject.h, so it can define | Guido van Rossum | 1998-07-10 | 2 | -8/+16 |
|
|
* | Marc-Andre Lemburg's patch to move the typedef for PyCFunctionObject | Guido van Rossum | 1998-07-10 | 2 | -6/+15 |
|
|
* | (1) Added a sys.exc_info() emulation. (It returns None for the traceback.) | Guido van Rossum | 1998-07-09 | 1 | -15/+57 |
|
|
* | Added item about index item/subitem separation. | Fred Drake | 1998-07-08 | 1 | -5/+6 |
|
|
* | Fix suggested by Lorenzo M. Catucci <lorenzo@argon.roma2.infn.it> to keep the | Fred Drake | 1998-07-08 | 1 | -1/+1 |
|
|
* | # In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining. | Guido van Rossum | 1998-07-08 | 1 | -3/+3 |
|
|
* | Marc-Andre Lemburg's patch to support instance methods with other | Guido van Rossum | 1998-07-08 | 3 | -19/+41 |
|
|
* | Reindented some OS/2 and hpux code that looked ugly or at least | Guido van Rossum | 1998-07-08 | 1 | -29/+28 |
|
|
* | Recompute the special getattr/setattr/delattr cache slots after | Guido van Rossum | 1998-07-08 | 1 | -7/+13 |
|
|
* | Rewrite to support multiple suckers, each with their own thread. | Guido van Rossum | 1998-07-08 | 1 | -102/+140 |
|
|
* | Instead of printint, use self.message() or self.note(). | Guido van Rossum | 1998-07-08 | 2 | -72/+63 |
|
|
* | Needed. | Guido van Rossum | 1998-07-08 | 1 | -0/+10 |
|
|
* | Minor change for windows; set extensions_c later and set | Guido van Rossum | 1998-07-07 | 1 | -1/+3 |
|
|
* | Put back the call to report_unbalanced() that was lost when | Guido van Rossum | 1998-07-07 | 1 | -0/+2 |
|
|
* | # Bump version because of checkin to faqwiz.py. :-( | Guido van Rossum | 1998-07-07 | 1 | -1/+1 |
|
|
* | Don't add <...> around mail addresses; they may already be there. | Guido van Rossum | 1998-07-07 | 1 | -1/+1 |
|
|
* | Added hints about building your own DLL. | Guido van Rossum | 1998-07-07 | 1 | -0/+9 |
|
|
* | Two error messages still used the old name of the functio mkvalue() -- | Guido van Rossum | 1998-07-07 | 1 | -2/+2 |
|
|
* | Add a cast that a picky SGI compiler found was necessary. | Guido van Rossum | 1998-07-07 | 1 | -1/+1 |
|
|