Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sjoerd Mullender writes: | Guido van Rossum | 2000-02-01 | 1 | -5/+14 |
| | | | | | | | | | | | | Fixed a TypeError: not enough arguments; expected 4, got 3. When authentication is needed, the default http_error_401 method calls retry_http_basic_auth. The default version of that method expected a data argument which wasn't provided, so now we provide the argument if it was given and we also made the data argument optional. Also changed other calls where data was optional to not pass data if it was not passed to the calling method (in line with other similar occurances). | ||||
* | Added docstring to crypt.crypt() based on the documentation. | Fred Drake | 2000-02-01 | 1 | -1/+10 |
| | |||||
* | The initialization of posix_putenv_garbage should only be done when it | Guido van Rossum | 2000-01-31 | 1 | -0/+2 |
| | | | | is defined... | ||||
* | Allow either README or README.txt as a "standard file". | Greg Ward | 2000-01-30 | 1 | -4/+16 |
| | |||||
* | Fixed broken list extend in 'copy_tree()'. | Greg Ward | 2000-01-30 | 1 | -2/+2 |
| | |||||
* | Added 'description' class attribute to every command class (to help the | Greg Ward | 2000-01-30 | 8 | -6/+26 |
| | | | | | | | '--help-commands' option). Shuffled imports around in a few command modules to avoid expensive up-front import of sysconfig (and resulting delays in generating list of all commands). | ||||
* | Added 'dist' command. | Greg Ward | 2000-01-30 | 1 | -0/+2 |
| | |||||
* | Improvements to the help system: | Greg Ward | 2000-01-30 | 1 | -5/+89 |
| | | | | | | | | * "--help" can now come either before or after particular commands to get help on and can give help on multiple commands, eg. "--help install dist" gives help on those two commands * added "--help-commands" option, implemented by the 'print_commands()' and 'print_command_list()' methods | ||||
* | Added missing run of corresponding 'build' command. | Greg Ward | 2000-01-30 | 3 | -0/+9 |
| | |||||
* | Big oops: macfs has always been using a private exception but calling it ↵ | Jack Jansen | 2000-01-24 | 1 | -1/+1 |
| | | | | | | | mac.error. It now uses MacOS.Error (the OSErr valued error) and advertises that too. This fix shouldn't break anything, I guess. | ||||
* | Hmm, the project wasn't a 5.3 file, despite the log msg. Now it is. | Jack Jansen | 2000-01-24 | 1 | -0/+0 |
| | |||||
* | Build the Nav module too. | Jack Jansen | 2000-01-24 | 1 | -0/+2 |
| | |||||
* | If there's an error in an fsspec argument raise MacOS.Error, not ValueError. | Jack Jansen | 2000-01-24 | 1 | -1/+1 |
| | |||||
* | Trent Mick: Setup PC configuration so that MSDEV chooses the x86 | Guido van Rossum | 2000-01-21 | 1 | -2/+2 |
| | | | | release project config as the default. | ||||
* | Don't insert extra indentation before <title> elements. | Fred Drake | 2000-01-20 | 1 | -12/+12 |
| | |||||
* | The rest of the changes by Trent Mick and Dale Nagata for warning-free | Guido van Rossum | 2000-01-20 | 15 | -22/+34 |
| | | | | compilation on NT Alpha. Mostly added casts etc. | ||||
* | Fix some broken links. | Guido van Rossum | 2000-01-20 | 1 | -3/+3 |
| | |||||
* | Changes by Trent Mick (of ActiveState) and Dale Nagata to support | Guido van Rossum | 2000-01-20 | 8 | -177/+1718 |
| | | | | building for NT Alpha as well as NT x86. | ||||
* | Two patches from Jack Jansen: | Guido van Rossum | 2000-01-20 | 2 | -7/+16 |
| | | | | | | | Three bgen mods: - support for FSSpecs passed-by-value and points-passed-by-reference added. - strip single-line comments when parsing header files - if a definition is blacklisted _do_ output it, but in comment | ||||
* | EXPERIMENTAL | Jeremy Hylton | 2000-01-20 | 1 | -0/+1063 |
| | | | | | An extensible library for opening URLs using a variety protocols. Intended as a replacement for urllib. | ||||
* | Change two occurrences of type(x) <> types.CodeType into | Guido van Rossum | 2000-01-19 | 1 | -2/+2 |
| | | | | | | isinstance(x, types.CodeType). Suggested by Finn Bock. | ||||
* | Made all textfields in message and question boxes minimal height and ↵ | Jack Jansen | 2000-01-18 | 2 | -0/+10 |
| | | | | invisible, and use AutoSizeDialog() and ShowWindow() before doing interaction. | ||||
* | Fix indentation bug. | Greg Ward | 2000-01-17 | 1 | -2/+2 |
| | |||||
* | Catch OSError from 'spawnv()' in '_spawn_nt()'. | Greg Ward | 2000-01-17 | 1 | -5/+12 |
| | | | | Tweaked error messages in '_spawn_posix()'. | ||||
* | Removed /GD switch -- currently ignored by MSVC. | Greg Ward | 2000-01-17 | 1 | -1/+1 |
| | |||||
* | Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded | Greg Ward | 2000-01-17 | 1 | -1/+1 |
| | | | | RT library. | ||||
* | Added missing import. | Greg Ward | 2000-01-17 | 1 | -8/+23 |
| | | | | Fixed 'make_release_tree()' to copy files if 'os.link()' doesn't exist. | ||||
* | Added code to use Jim Ahlstrom's zipfile.py module if the external zip | Greg Ward | 2000-01-17 | 1 | -5/+32 |
| | | | | | command wasn't found or failed. (Code supplied by Thomas Heller <thomas.heller@ion-tof.com>.) | ||||
* | Fix library filename methods -- there is no 'lib' prefix under DOS/Windows. | Greg Ward | 2000-01-17 | 1 | -5/+2 |
| | |||||
* | Always run sys.prefix and sys.exec_prefix through 'os.path.normpath()' | Greg Ward | 2000-01-17 | 1 | -4/+4 |
| | | | | before storing or using. | ||||
* | Ditch unneeded imports. | Greg Ward | 2000-01-17 | 1 | -1/+0 |
| | |||||
* | Fix by Nick Russo in processing of timezone in test program; the | Guido van Rossum | 2000-01-17 | 1 | -2/+4 |
| | | | | ParsedDate didn't have the correct day of week. | ||||
* | According to Ron Bickers, and with apparent approval of Chris | Guido van Rossum | 2000-01-14 | 1 | -1/+1 |
| | | | | | | Herborth, the code in list2set() that sets max unconditionally to 0 should not be used on BeOS. So be it. Anybody using BeOS, please test! | ||||
* | - Actually _implemented_ SetFolder() | Jack Jansen | 2000-01-13 | 1 | -3/+27 |
| | | | | | - Fixed StandardPutFile: prompt, default - Check explicitly for userCanceledErr, pass other Nav.error exceptions through. | ||||
* | Handling of defaultLocation argument was wrong, causing a crash when used. ↵ | Jack Jansen | 2000-01-13 | 1 | -1/+16 |
| | | | | Fixed. | ||||
* | List objects obtained through as_List(resource) are not auto-disposed upon | Jack Jansen | 2000-01-13 | 2 | -11/+34 |
| | | | | Python object freeing. | ||||
* | Get/set sys.path initializer in new appearance way. | Jack Jansen | 2000-01-13 | 1 | -3/+4 |
| | |||||
* | Fix a bug in exec_statement() noted incidentally by Tim Peters in | Guido van Rossum | 2000-01-12 | 1 | -20/+13 |
| | | | | | | | | | PR#175 -- when exec is passed a code object, it didn't sync the locals from the dictionary back into their fast representation. Also took the time to remove some repetitive code there and to do the syncing even when an exception is raised (since a partial effect should still be synced). | ||||
* | The functions asctime() and mktime() are documented to take a 9-tuple | Guido van Rossum | 2000-01-12 | 1 | -4/+10 |
| | | | | | | only. Through some mysterious interaction, they would take 9 separate arguments as well. This misfeature is now disabled (to end a difference with JPython). | ||||
* | On Linux, one sometimes sees spurious errors after interrupting | Guido van Rossum | 2000-01-12 | 1 | -0/+1 |
| | | | | | previous output. Call clearerr() to prevent past errors affecting our ferror() test later, in PyObject_Print(). Suggested by Marc Lemburg. | ||||
* | 'newer_group()' can now deal with missing files, in a way specified by | Greg Ward | 2000-01-09 | 1 | -2/+17 |
| | | | | the 'missing' parameter. | ||||
* | Abstracted '_fix_link_args()' out of 'link_shared_object()'. | Greg Ward | 2000-01-09 | 1 | -37/+133 |
| | | | | | | | | | | | | | | Added 'link_static_lib()' method, and 'archiver' and 'archiver_options' class attributes to support it. Added 'link_executable()' method, and 'ld_exec' instance attribute to support it. 'newer_group()' is now able to handle missing files, so we don't have to kludge it by catching OSError when calling it. 'object_filenames()' and 'shared_object_filename()' now take 'keep_dir' flag parameters. 'library_filename()' and 'shared_library_filename()' now respect a directory component in the library name. Various comment updates/deletions. | ||||
* | Removed a bunch of irrelevant parameters from 'link_static_lib()' signature. | Greg Ward | 2000-01-09 | 1 | -8/+18 |
| | | | | Added 'link_executable()' signature. | ||||
* | Typo fix: 'file.warn' should have been 'manifest.warn' in a couple of places. | Greg Ward | 2000-01-09 | 1 | -5/+5 |
| | |||||
* | Two constants were missing. | Jack Jansen | 2000-01-07 | 1 | -0/+2 |
| | |||||
* | Added initializer routine optionally to be used as PEF fragment ↵ | Jack Jansen | 2000-01-07 | 1 | -0/+34 |
| | | | | initialization routine, which allows us to get at our own resource fork even if some shared library init routine opens other resource files. | ||||
* | The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM). | Guido van Rossum | 2000-01-03 | 1 | -4/+1 |
| | |||||
* | redesign/rebuild around the ImportManager concept. | Greg Stein | 2000-01-03 | 1 | -149/+291 |
| | |||||
* | CW Pro 5.3 projects. | Jack Jansen | 2000-01-01 | 31 | -0/+0 |
| | |||||
* | setup_confname_table(): Use size_t instead of int for an index when | Fred Drake | 1999-12-30 | 1 | -1/+1 |
| | | | | | | | building the dicts used to inform the user about the defined constants when using the *conf*() APIs. Thanks to Mark Hammond <mhammond@skippinet.com.au>. |