summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Added 3rd optional argument to translate(), a string of characters to delete.Guido van Rossum1996-07-232-18/+46
| | | | Added maketrans(), a utility to create a translation table.
* Remove all CRLF -> LF translation for file uploads, since we cannotGuido van Rossum1996-07-231-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 Rossum1996-07-231-28/+33
|
* Changes by Jim Fulton: pass environ around as arg;Guido van Rossum1996-07-231-19/+52
| | | | keep_blank_values option to parse().
* Added splitext()Guido van Rossum1996-07-231-0/+22
|
* New versions generated on a Linux 2.x system by AMKGuido van Rossum1996-07-228-164/+430
|
* Optimizations and one intentional loophole by Jim Fulton.Guido van Rossum1996-07-221-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.xGuido van Rossum1996-07-2210-0/+1608
|
* Fuck. For PC support, this must be in the distribution.Guido van Rossum1996-07-2284-0/+13110
|
* Restore the capability to pass a class (usually Pack) as an option to widgetGuido van Rossum1996-07-212-8/+14
| | | | creation; no longer support this for the config method.
* Don't use tktools, dummy! Reworded test message slightly.Guido van Rossum1996-07-212-10/+62
|
* fix canvas bind commandsGuido van Rossum1996-07-214-4/+4
|
* Added option to refilemessages() to keep sequencesGuido van Rossum1996-07-211-4/+27
|
* Changes for new parser module (Fred Drake)Guido van Rossum1996-07-213-37/+276
|
* New opcodes BINARY_POWER, RAISE_VARARGS, CALL_FUNCTION, MAKE_FUNCTIONGuido van Rossum1996-07-211-0/+5
|
* Fixed restore_files(); added reset_files(); made these more flexible.Guido van Rossum1996-06-281-8/+31
|
* socket wrapper module around _socket for all Window platformsGuido van Rossum1996-06-262-0/+272
|
* url2path for NTGuido van Rossum1996-06-261-0/+52
|
* add nturl2pathGuido van Rossum1996-06-261-0/+2
|
* Sjoerd's StringIO speed-upGuido van Rossum1996-06-191-7/+30
|
* get rid of temporary README about Tommy's effortsGuido van Rossum1996-06-171-27/+0
|
* new simple dialog module, incompatibleGuido van Rossum1996-06-172-0/+154
|
* Change defn of splitnport() to only accept valid digit strings.Guido van Rossum1996-06-171-10/+9
|
* Import marshal before using it :-(Guido van Rossum1996-06-171-0/+1
|
* Memoize _deepcopy_tuple() -- maybe this helps Tommy's problem.Guido van Rossum1996-06-171-2/+6
|
* Added splitnport(), which is like splitport() but returns a numeric port,Guido van Rossum1996-06-131-0/+17
| | | | | is forgiving about semi-numeric port numbers, and allows you to specify a default port (default is -1, None returned for nonnumeric port).
* Bastionification utility (useful for rexec clients)Guido van Rossum1996-06-111-0/+162
|
* Add third arg to split(). Add capwords() -- which uses that.Guido van Rossum1996-06-111-1/+15
|
* Added capitalize() and capwords().Guido van Rossum1996-06-112-0/+20
|
* regenerated files from IRIX 5.3 headersGuido van Rossum1996-06-1113-122/+1224
|
* 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
|