summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Support optional filename argument for retrieve() and urlretrieve(),Guido van Rossum1996-06-111-8/+12
| | | | | to specify where it should go (if specified, even local files will be copied into the given file).
* small fix by SjoerdGuido van Rossum1996-06-101-3/+12
|
* change DumbWriter to derive from NullWriterGuido van Rossum1996-05-291-3/+4
|
* optimizations due to Fred Drake; added urldefrag() functionGuido van Rossum1996-05-281-18/+35
|
* Conversions between mac paths and URLsGuido van Rossum1996-05-281-0/+76
|
* Many improvements dure to Fred DrakeGuido van Rossum1996-05-281-57/+153
|
* Docstringified and PASV support by Siebren (including new ftpcp() function).Guido van Rossum1996-05-281-91/+171
|
* fix typo in load_dynamicGuido van Rossum1996-05-281-1/+1
|
* Be more careful about default temp dirGuido van Rossum1996-05-281-10/+20
|
* added &quot defGuido van Rossum1996-05-281-0/+1
|
* Total rewriteGuido van Rossum1996-05-281-58/+78
|
* made it work again with changed TkinterGuido van Rossum1996-05-282-10/+38
|
* Major overhaul:Guido van Rossum1996-05-282-96/+202
| | | | | | | | | | | | | | - Support ~[user] expansion. - Remember last directory and pattern; optional 'key' argument specifies different memory locations. - Absolutify pathnames if possible. - WM close event cancels the dialog. - First arg to go() can be either a directory or a file (renamed to dir_of_file); defaults to current directory.
* don't export selectionGuido van Rossum1996-05-282-4/+4
|
* added hdl protocol propertiesGuido van Rossum1996-05-281-3/+3
|
* removed history commentGuido van Rossum1996-05-281-3/+0
|
* add translate() -- which was in strop per release 1.3Guido van Rossum1996-05-282-0/+16
|
* optimization of getheader() using a dictionaryGuido van Rossum1996-05-281-45/+33
|
* Fix some obsolete names comments.Guido van Rossum1996-05-281-12/+53
| | | | | | | | | | | | | Change RHooks() interface to not require a 'rexec' instance argument; added set_rexec() method instead (which must be called by the RExec instance using this RHooks instance). Support dynamic loading of modules, at least for those modules that are ok built-in modules. Added new interfaces set_trusted_path() and load_dynamic() to RExec class (the default trusted path consists of all absolute pathnames in sys.path). Change copy_except() to actually try to delete the exceptions.
* avoid eval() like the plagueGuido van Rossum1996-05-281-1/+2
|
* change Mac creator/typeGuido van Rossum1996-05-281-2/+2
|
* change return values of simple run* functionsGuido van Rossum1996-05-281-4/+3
|
* removed unused globalsGuido van Rossum1996-05-281-1/+1
|
* added setcontext and parsesequence; several small fixesGuido van Rossum1996-05-281-6/+56
|
* export error == IOErrorGuido van Rossum1996-05-281-0/+2
|
* bump version (sorry)Guido van Rossum1996-05-281-1/+1
|
* capitalize H3 headers; add 'cgi.' prefix to example codeGuido van Rossum1996-05-281-4/+4
|
* added * and + operatorsGuido van Rossum1996-05-281-0/+13
|
* minor fix to mime header regex --SjoerdGuido van Rossum1996-05-281-1/+1
|
* Auto-install on first import.Guido van Rossum1996-05-282-0/+90
| | | | Added quick reference.
* more changes copied from GrailGuido van Rossum1996-05-212-60/+98
|
* Made Place.info == Pack.infoGuido van Rossum1996-05-162-2/+20
|
* Yet another mini fix to pack/grid info.Guido van Rossum1996-05-162-4/+4
|
* Some more changes from the net... Typos, 4.0/4.1 issues, new tkButtonInvoke().Guido van Rossum1996-05-162-10/+50
|
* Resync with Grail's Tkinter.py.Guido van Rossum1996-05-162-390/+680
|
* Set the base for atoi() and atol() to 0, since we're reading PythonGuido van Rossum1996-05-151-3/+3
| | | | | numbers here, and so that atol() doesn't barf on the trailing 'L'. Add a test case involving a long integer.
* Don't atoi() the memo key.Guido van Rossum1996-04-121-7/+16
| | | | Use atoi(), atol(), atof() instead of load_atomic for seed-up.
* Subtlety: ~root/a should expand to /a, not //a. Everything else unchanged.Guido van Rossum1996-04-021-0/+1
|
* Update reference (it's now RFC 1808); added http to list of protocolsGuido van Rossum1996-03-291-9/+3
| | | | that use parameters.
* Reformatted with 4-space tab stops.Guido van Rossum1996-03-281-286/+406
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow '=' and '~' in unquoted attribute values. Added overridable methods handle_starttag(tag, method, attrs) and handle_endtag(tag, method) so subclasses can decide whether they really want to call the method (e.g. when suppressing some portion of the document). Added support for a number of SGML shortcuts: shorthand full notation <tag>...<>... <tag>...<tag>... <tag>...</> <tag>...</tag> <tag/.../ <tag>...</tag> <tag1<tag2> <tag1><tag2> </tag1</tag2> </tag1></tag2> </tag1<tag2> </tag1><tag2> This required factoring out some common actions and rationalizing the interface to parse_endtag(), so as to make the code more readable. Fixed syntax for &entity and &#char references so the trailing semicolon is optional; removed explicit support for trailing period (which was a TBL mistake in HTML 0.0). Generalized the test program. Tried to speed things up a little. (More to come after the profile results are in.) Fix error recovery: call the end methods popped from the stack instead of the one that triggers. (Plus some complications because of the way HTML extensions are handled in Grail.)
* new binhex from Jack (much faster)Guido van Rossum1996-03-251-9/+14
|
* Finally check in Jack's latest version, which fixes all known bugs.Guido van Rossum1996-03-231-142/+153
|
* move mac url2path conversion to separate moduleGuido van Rossum1996-03-211-50/+1
|
* Added proxy handling; upped version.Guido van Rossum1996-03-201-8/+44
| | | | (Proxy handling uses <proto>_proxy environment variables by default.)
* Added print_arguments() function.Guido van Rossum1996-03-141-0/+8
|
* Change to use real temporary files instead of StringIO. Correct andGuido van Rossum1996-03-091-25/+40
| | | | add to documentation. This will be released as cgi.py 2.0a1.
* Considerable documentation changes and a few import rearrangements.Guido van Rossum1996-03-091-61/+122
|
* Reformatted with 4-space indentation. Added some quick docs to theGuido van Rossum1996-03-071-551/+630
| | | | FieldStorage class.
* Added FieldStorage class, which stores parts in files.Guido van Rossum1996-03-071-5/+272
| | | | (Not documented yet, and the files are currently StringIO instances.)
* Reformatting only.Guido van Rossum1996-03-061-166/+177
|