summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of nobody_uid() and import pwd -- not used here.Guido van Rossum1996-09-041-12/+0
|
* Subtle hack so the eps printed is not dependent on the formattingGuido van Rossum1996-08-291-2/+3
| | | | habits of the C library we happen to use...
* No double underscores for globals pleaseGuido van Rossum1996-08-261-3/+3
|
* Another batch of updates...Guido van Rossum1996-08-2620-62/+842
|
* Bump exposed __version__ to 1.4.Guido van Rossum1996-08-261-6/+9
| | | | Correctly handle a URL containing user:password@host when using a proxy.
* Don't die when getuid() or getpid() aren't defined.Guido van Rossum1996-08-261-2/+8
|
* Don't do truncation to 8+3 format -- this is used on NT file systems!Guido van Rossum1996-08-261-9/+2
|
* Added Mime writer module (formerly in Grail)Guido van Rossum1996-08-261-0/+131
|
* typo (cotinue -> continue)Guido van Rossum1996-08-261-1/+1
|
* Three sets of changes from Grail:Guido van Rossum1996-08-261-12/+15
| | | | | | | | | | | | | | | | | | | | | | | | | date: 1996/08/14 17:27:21; author: fdrake; state: Exp; lines: +11 -9 (formatter.py): Establish a consistent space-handling policy, so that all spaces are handled by the outermost context in which they might be considered. (I.e., softspaces at element boundaries migrate outwards.) For instance: "<A> <IMG> </A>" becomes " <A><IMG></A> ". This avoids some of those nasty underlined spaces around images. It does not affect spaces *between* images within an anchor. date: 1996/08/01 17:02:09; author: fdrake; state: Exp; lines: +3 -2 (formatter.py): Added required parameter to the NullFormatter class; this was omitted by accident. Made AbstractFormatter.add_literal_data() handle preceeding softspace correctly instead of expecting the caller to do it. date: 1996/07/23 22:18:56; author: fdrake; state: Exp; lines: +1 -1 (formatter.py): Correct assert_line_data() to update all internal conditions; This now handles headers with only image content immediately followed by anything.
* Slightly faster (un)quoting.Guido van Rossum1996-08-261-8/+8
|
* Use correct separator for capwords(s, sep).Guido van Rossum1996-08-262-2/+2
|
* Emacs font-lock de-bogo-kludgificocityGuido van Rossum1996-08-261-0/+2
|
* Changes for Canvas by FredGuido van Rossum1996-08-224-86/+66
|
* imghdr.what(): check for not h'. This letsGuido van Rossum1996-08-221-1/+1
| | | | | | you do: imghdr.what(None, '') And still go down the
* Added a small test program.Guido van Rossum1996-08-212-0/+38
|
* New batch from FredGuido van Rossum1996-08-213-39/+155
|
* Get rid of access statementGuido van Rossum1996-08-204-31/+31
|
* Attempt at Windows-NT compatibility.Guido van Rossum1996-08-201-1/+4
|
* Add optional separator character to capwords(), for completeness.Guido van Rossum1996-08-202-4/+4
|
* delattr() can raise AttributeError, not KeyError.Guido van Rossum1996-08-201-2/+2
| | | | Use keyword arg to set verbose flag in test func.
* Correct description of splitext().Guido van Rossum1996-08-201-1/+1
|
* Added locking hacks for AIXGuido van Rossum1996-08-201-1/+8
|
* Added print_exception() convenience function.Guido van Rossum1996-08-201-3/+21
|
* Improved tests; run twice, onece in normal mode, once in restricted mode.Guido van Rossum1996-08-201-0/+15
|
* Get rid of debug print statementsGuido van Rossum1996-08-202-6/+0
|
* Rename __test() to _test().Guido van Rossum1996-08-191-2/+2
|
* XDR interface, evolved from Demo/rpc/xdr.py by Barry.Guido van Rossum1996-08-191-0/+324
|
* site customization hook...Guido van Rossum1996-08-171-0/+47
|
* regen for NextGuido van Rossum1996-08-162-0/+22
|
* Added routines to print, format and extract the current, ``live'' stack.Guido van Rossum1996-08-121-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 Rossum1996-08-091-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 Rossum1996-08-081-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 fromGuido van Rossum1996-08-081-1/+7
| | | | sys.argv[1], effectively merging the fields.
* Add optional third parameter to split() and splitfields(), giving theGuido van Rossum1996-08-082-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(): theGuido van Rossum1996-08-081-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__, noGuido van Rossum1996-08-081-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 Rossum1996-08-081-0/+2
|
* Don't use 'false'; use '0'.Guido van Rossum1996-08-081-1/+1
|
* stupid typo in latest fix ('Name' should be 'name')Guido van Rossum1996-08-082-2/+2
|
* Need to import * from typesGuido van Rossum1996-08-082-4/+2
|
* Added test for math moduleGuido van Rossum1996-08-083-0/+183
|
* Use fcntl.h instead of sys/fcntl.h; use h2py.py from Tools/scriptsGuido van Rossum1996-08-082-8/+8
|
* New AIX specific subdirsGuido van Rossum1996-08-0820-0/+2850
|
* Don't trip over empty string in sys.path.Guido van Rossum1996-07-311-1/+1
|
* FreeBSD platform specific modulesGuido van Rossum1996-07-304-0/+136
|
* Add missing close parenthesis.Guido van Rossum1996-07-302-2/+2
|
* Change to use keyword args instead of dictsGuido van Rossum1996-07-302-20/+16
|
* Sh script to recreage generic machdep subdirectoryGuido van Rossum1996-07-302-0/+12
|
* updated againGuido van Rossum1996-07-304-62/+98
|