Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | delattr() can raise AttributeError, not KeyError. | Guido van Rossum | 1996-08-20 | 1 | -2/+2 |
| | | | | Use keyword arg to set verbose flag in test func. | ||||
* | Correct description of splitext(). | Guido van Rossum | 1996-08-20 | 1 | -1/+1 |
| | |||||
* | Added locking hacks for AIX | Guido van Rossum | 1996-08-20 | 1 | -1/+8 |
| | |||||
* | Added print_exception() convenience function. | Guido van Rossum | 1996-08-20 | 1 | -3/+21 |
| | |||||
* | Improved tests; run twice, onece in normal mode, once in restricted mode. | Guido van Rossum | 1996-08-20 | 1 | -0/+15 |
| | |||||
* | Get rid of debug print statements | Guido van Rossum | 1996-08-20 | 2 | -6/+0 |
| | |||||
* | Rename __test() to _test(). | Guido van Rossum | 1996-08-19 | 1 | -2/+2 |
| | |||||
* | XDR interface, evolved from Demo/rpc/xdr.py by Barry. | Guido van Rossum | 1996-08-19 | 1 | -0/+324 |
| | |||||
* | site customization hook... | Guido van Rossum | 1996-08-17 | 1 | -0/+47 |
| | |||||
* | regen for Next | Guido van Rossum | 1996-08-16 | 2 | -0/+22 |
| | |||||
* | Added routines to print, format and extract the current, ``live'' stack. | Guido van Rossum | 1996-08-12 | 1 | -7/+65 |
| | | | | | Also added print_list() and format_list() which format the output from an extract_*() routine. | ||||
* | Use splitx() in capwords() (bugfix after interface change for split()). | Guido van Rossum | 1996-08-09 | 1 | -2/+2 |
| | | | | | Give capwords a default pattern argument which will recognize words as sequeces of [a-zA-Z0-9_]. | ||||
* | This is the third time I check in this change :-( | Guido van Rossum | 1996-08-08 | 1 | -2/+1 |
| | | | | | Don't use assignments into inst.__dict__ to restore instance variables; use setattr() instead. | ||||
* | For method=POST, append a query string from the environment or from | Guido van Rossum | 1996-08-08 | 1 | -1/+7 |
| | | | | sys.argv[1], effectively merging the fields. | ||||
* | Add optional third parameter to split() and splitfields(), giving the | Guido van Rossum | 1996-08-08 | 2 | -8/+44 |
| | | | | | maximum number of delimiters to parse; e.g. splitfields("a,b,c,d", ",", 2) -> ["a", "b", "c,d"]. | ||||
* | Changed split() to be compatible with changes to string.split(): the | Guido van Rossum | 1996-08-08 | 1 | -4/+24 |
| | | | | | | optional third argument gives a maximum number of delimiters to parse. The new function splitx() is like split() but returns a list containing the words as well as the delimiters. | ||||
* | Slight update of doc string -- suggest default args for __init__, no | Guido van Rossum | 1996-08-08 | 1 | -4/+6 |
| | | | | longer complain that __getinitargs__ is an ugly name. | ||||
* | Restore 1.3 behavior of gettempdir(): if tempdir is already set, believe it. | Guido van Rossum | 1996-08-08 | 1 | -0/+2 |
| | |||||
* | Don't use 'false'; use '0'. | Guido van Rossum | 1996-08-08 | 1 | -1/+1 |
| | |||||
* | stupid typo in latest fix ('Name' should be 'name') | Guido van Rossum | 1996-08-08 | 2 | -2/+2 |
| | |||||
* | Need to import * from types | Guido van Rossum | 1996-08-08 | 2 | -4/+2 |
| | |||||
* | Added test for math module | Guido van Rossum | 1996-08-08 | 3 | -0/+183 |
| | |||||
* | Use fcntl.h instead of sys/fcntl.h; use h2py.py from Tools/scripts | Guido van Rossum | 1996-08-08 | 2 | -8/+8 |
| | |||||
* | New AIX specific subdirs | Guido van Rossum | 1996-08-08 | 20 | -0/+2850 |
| | |||||
* | Don't trip over empty string in sys.path. | Guido van Rossum | 1996-07-31 | 1 | -1/+1 |
| | |||||
* | FreeBSD platform specific modules | Guido van Rossum | 1996-07-30 | 4 | -0/+136 |
| | |||||
* | Add missing close parenthesis. | Guido van Rossum | 1996-07-30 | 2 | -2/+2 |
| | |||||
* | Change to use keyword args instead of dicts | Guido van Rossum | 1996-07-30 | 2 | -20/+16 |
| | |||||
* | Sh script to recreage generic machdep subdirectory | Guido van Rossum | 1996-07-30 | 2 | -0/+12 |
| | |||||
* | updated again | Guido van Rossum | 1996-07-30 | 4 | -62/+98 |
| | |||||
* | Two independent changes: | Guido van Rossum | 1996-07-30 | 2 | -4/+6 |
| | | | | | - accept empty string from focus_get - map coords() return value through getdouble and splitlist | ||||
* | Function to guess which db package created a database. | Guido van Rossum | 1996-07-30 | 1 | -0/+60 |
| | |||||
* | New, improved parseaddr() by Sjoerd. | Guido van Rossum | 1996-07-30 | 1 | -30/+83 |
| | |||||
* | Changes to make it work on FreeBSD 2.x. | Guido van Rossum | 1996-07-30 | 1 | -3/+16 |
| | |||||
* | Two changes suggested by Andrew Kuchling: | Guido van Rossum | 1996-07-30 | 1 | -1/+17 |
| | | | | | - move compile() inside try-except - add code so you can do "python pdb.py <script> <arg> ..." to debug <script> | ||||
* | Added optional second arg to what(), giving the data read from the file | Guido van Rossum | 1996-07-30 | 1 | -7/+13 |
| | | | | (then f may be None). | ||||
* | Added BUILD_SLICE opcode. | Guido van Rossum | 1996-07-30 | 1 | -0/+1 |
| | |||||
* | Obsolete | Guido van Rossum | 1996-07-30 | 2 | -178/+0 |
| | |||||
* | Added hook to os.environ to call putenv(), if it exists. | Guido van Rossum | 1996-07-24 | 1 | -0/+19 |
| | |||||
* | Added 3rd optional argument to translate(), a string of characters to delete. | Guido van Rossum | 1996-07-23 | 2 | -18/+46 |
| | | | | Added maketrans(), a utility to create a translation table. | ||||
* | Remove all CRLF -> LF translation for file uploads, since we cannot | Guido van Rossum | 1996-07-23 | 1 | -9/+14 |
| | | | | | | reliably distinguish binary files from text files (and Mac Netscape sends all files in "binary" form, i.e. it sends text files with only CR delimiters...). | ||||
* | Renamed all occurrences of posix to os. | Guido van Rossum | 1996-07-23 | 1 | -28/+33 |
| | |||||
* | Changes by Jim Fulton: pass environ around as arg; | Guido van Rossum | 1996-07-23 | 1 | -19/+52 |
| | | | | keep_blank_values option to parse(). | ||||
* | Added splitext() | Guido van Rossum | 1996-07-23 | 1 | -0/+22 |
| | |||||
* | New versions generated on a Linux 2.x system by AMK | Guido van Rossum | 1996-07-22 | 8 | -164/+430 |
| | |||||
* | Optimizations and one intentional loophole by Jim Fulton. | Guido van Rossum | 1996-07-22 | 1 | -58/+82 |
| | | | | | | | | | | The optimizations consist mostly of using local variables to cache methods or instance variables used a lot (e.g. "self.write"). The loopholes allows marshalling extension types as long as they have a __class__ attribute (in which case they may support the rest of the class piclking protocol as well). This allows pickling MESS extension types. | ||||
* | This is needed for users of Linux 2.x | Guido van Rossum | 1996-07-22 | 10 | -0/+1608 |
| | |||||
* | Fuck. For PC support, this must be in the distribution. | Guido van Rossum | 1996-07-22 | 84 | -0/+13110 |
| | |||||
* | Restore the capability to pass a class (usually Pack) as an option to widget | Guido van Rossum | 1996-07-21 | 2 | -8/+14 |
| | | | | creation; no longer support this for the config method. | ||||
* | Don't use tktools, dummy! Reworded test message slightly. | Guido van Rossum | 1996-07-21 | 2 | -10/+62 |
| |