| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow leading underscore in keywords. | Guido van Rossum | 1997-04-02 | 1 | -1/+1 |
|
|
* | Added AssertionError. | Guido van Rossum | 1997-04-02 | 1 | -0/+1 |
|
|
* | Added __assert__ statement (later to be renamed) | Guido van Rossum | 1997-04-02 | 1 | -1/+2 |
|
|
* | Optimized the hell out of listmessages(). | Guido van Rossum | 1997-04-02 | 1 | -10/+8 |
|
|
* | Get rid of .conj pseudo data attribute for complex numbers. | Guido van Rossum | 1997-04-01 | 1 | -5/+2 |
|
|
* | Remove ConflictError (which was also removed from bltinmodule.c, even | Guido van Rossum | 1997-03-31 | 1 | -1/+0 |
|
|
* | remove ConflictError | Guido van Rossum | 1997-03-31 | 1 | -1/+0 |
|
|
* | Remove ConflictError, add InteractiveFlag, CObject_Type, FdIsInteractive, and... | Guido van Rossum | 1997-03-31 | 1 | -2/+8 |
|
|
* | 1. Add string conversions to int(), long(), float(). (Not to complex()!) | Guido van Rossum | 1997-03-31 | 1 | -7/+127 |
|
|
* | Added test of complex() (that catches a bug in 1.4!). | Guido van Rossum | 1997-03-31 | 1 | -0/+39 |
|
|
* | Added a list of the main undocumented extension modules. | Guido van Rossum | 1997-03-27 | 2 | -4/+54 |
|
|
* | Added docs for UserDict,UserList | Guido van Rossum | 1997-03-27 | 7 | -1/+64 |
|
|
* | Added docs for glob and mailcap | Guido van Rossum | 1997-03-25 | 2 | -0/+4 |
|
|
* | Added docs for glob | Guido van Rossum | 1997-03-25 | 7 | -5/+77 |
|
|
* | Added docs for mailcap | Guido van Rossum | 1997-03-25 | 7 | -5/+157 |
|
|
* | Change by Andrew Kuchling (edited by Guido): | Guido van Rossum | 1997-03-25 | 1 | -17/+32 |
|
|
* | Added two new questions about number conversions. | Guido van Rossum | 1997-03-25 | 1 | -0/+23 |
|
|
* | As per GvR recomendation, added support for a 'sync' attribute for the | Roger E. Masse | 1997-03-25 | 1 | -0/+18 |
|
|
* | Added new functions replace() and replace1(). | Guido van Rossum | 1997-03-25 | 2 | -0/+30 |
|
|
* | Added docs for replace() and replace1(). | Guido van Rossum | 1997-03-25 | 2 | -0/+26 |
|
|
* | Added a 'sync' method to shelve. If the underlying database does not have a ... | Roger E. Masse | 1997-03-25 | 1 | -0/+4 |
|
|
* | Remove untrue statement about . and .. being included in list of names | Guido van Rossum | 1997-03-25 | 2 | -4/+4 |
|
|
* | Add clear() method to dictionary objects. | Guido van Rossum | 1997-03-21 | 2 | -0/+26 |
|
|
* | Removed 'marshal' from the list of "ok" built-in functions -- the | Guido van Rossum | 1997-03-21 | 1 | -1/+1 |
|
|
* | Fix typo (missing $ in ) | Guido van Rossum | 1997-03-20 | 1 | -1/+1 |
|
|
* | Ping's new version -- more efficient at finding the keywords. | Guido van Rossum | 1997-03-20 | 1 | -37/+13 |
|
|
* | Added __assert__. | Guido van Rossum | 1997-03-20 | 1 | -0/+1 |
|
|
* | Ka-Ping Yee's version is better: | Guido van Rossum | 1997-03-20 | 1 | -37/+116 |
|
|
* | Simple module to publish list of Python keywords. | Guido van Rossum | 1997-03-20 | 1 | -0/+37 |
|
|
* | Avoid crashes with nested multipart/mixed parts. | Guido van Rossum | 1997-03-20 | 1 | -1/+8 |
|
|
* | Added note about adding \n to source for exec and compile. | Guido van Rossum | 1997-03-19 | 1 | -0/+7 |
|
|
* | Added Q. about HTTP/1.1. | Guido van Rossum | 1997-03-16 | 1 | -0/+11 |
|
|
* | New long_lshift, without restriction on size of shift count, by Tim Peters. | Guido van Rossum | 1997-03-16 | 1 | -26/+22 |
|
|
* | Remove err_input -- there is no such global! | Guido van Rossum | 1997-03-14 | 1 | -1/+0 |
|
|
* | New form of PyFPE_END_PROTECT macro. | Guido van Rossum | 1997-03-14 | 12 | -36/+36 |
|
|
* | Include setjmp.h so it compiles if WANT_SIGFPE_HANDLER is undefined. | Guido van Rossum | 1997-03-14 | 1 | -0/+1 |
|
|
* | Remove redundant references to thread stuff -- long, long ago, there | Guido van Rossum | 1997-03-14 | 1 | -6/+0 |
|
|
* | Add Macros defining new names for all external symbols. | Guido van Rossum | 1997-03-14 | 2 | -0/+36 |
|
|
* | Change PyFPE_END_PROTECT to PyFPE_END_PROTECT(v). v should be the | Guido van Rossum | 1997-03-14 | 1 | -3/+3 |
|
|
* | Implement find_class() without exec statement. | Guido van Rossum | 1997-03-14 | 1 | -4/+2 |
|
|
* | Change the list() function to match the documentation in the comment | Guido van Rossum | 1997-03-14 | 1 | -1/+1 |
|
|
* | Added Fred Drake's netrc parser class. | Guido van Rossum | 1997-03-14 | 1 | -0/+100 |
|
|
* | Support disassembly of a variety of objects through dis.dis(). | Guido van Rossum | 1997-03-14 | 1 | -0/+17 |
|
|
* | Add optional 4th argument to [r]find and [r]index (end of slice). | Guido van Rossum | 1997-03-14 | 5 | -43/+99 |
|
|
* | Add a rough list of undocumented stuff at the end. | Guido van Rossum | 1997-03-14 | 5 | -1/+445 |
|
|
* | Hint about [\] trick to avoid quad backslashes. | Guido van Rossum | 1997-03-14 | 2 | -4/+6 |
|
|
* | target libinstall: | Fred Drake | 1997-03-13 | 1 | -0/+2 |
|
|
* | compile(): Use the __debug__ flag to determine the proper filename extension | Fred Drake | 1997-03-13 | 1 | -1/+1 |
|
|
* | Fix dumb bug calling parsestrplus with wrong node as argument. | Guido van Rossum | 1997-03-11 | 1 | -1/+3 |
|
|
* | Define __debug__ as 0 if -O is given, 1 otherwise. Also test for | Guido van Rossum | 1997-03-11 | 1 | -0/+4 |
|
|