- 25 May, 2000 2 kayıt (commit)
-
-
Greg Ward yazdı
necessary to support it. Details: - build command additionally calls build_scripts - build_scripts builds your scripts in 'build/scripts' and adjusts the first line if it begins with "#!" and ends with "python", optionally ending with commandline options (like -O, -t ...). Adjusting means we write the current path to the Python interpreter in the first line. - install_scripts copies the scripts to the install_scripts dir - install_data copies your data_files in install_data. You can supply individual directories for your data_files: data_files = ['doc/info.txt', # copy this file in install_scripts dir ('testdata', ['a.dat', 'b.dat']), # copy these files in # install_scripts/testdata ('/etc', ['packagerc']), # copy this in /etc. When --root is # given, copy this in rootdir/etc ] So you can use the --root option with absolute data paths.
-
Greg Ward yazdı
-
- 24 May, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
often, ftp URLs hang in the final close. Further analysis suggests that this is because the close hook in addclosehook() calls the hook before acually closing the connection. The hook, in this case, waits for the '226 Transfer complete' status from the server on the command socket. However, more and more ftp servers only send this status when the data socket has actually been closed -- causing a deadlock. The fix is simple: in addclosehook.close(), call addbase.close() *before* calling the closehook.
-
- 23 May, 2000 15 kayıt (commit)
-
-
Greg Ward yazdı
DistutilsPlatformError: "invalid Python installation". (This will happen on Red Hat-ish systems where the python-devel package is not installed.)
-
Andrew M. Kuchling yazdı
now complete, but probably still not very helpful or friendly. Note: two very large tables (of key names, and of character names) were added; these tables format terribly, and need some reworking.
-
Andrew M. Kuchling yazdı
Lots of typo fixes (a bit too much cut-and-paste in this module) Aliases removed: attr_on, attr_off, attr_set Lowercased the names COLOR_PAIR and PAIR_NUMBER #ifdef's for compiling on Solaris added (need to understand SYSV curses versions better and generalize this) Bumped version number bumped to 1.6
-
Andrew M. Kuchling yazdı
-
Barry Warsaw yazdı
Montanaro, handle execution of indented regions by inserting an "if 1:" in front of the block. This better preserves things like triple quoted strings and commented regions. This patch resolves PR#264.
-
Greg Ward yazdı
before setting it -- this will catch bad options (eg. typos) in config files.
-
Greg Ward yazdı
dump the Distribution's 'command_options' dict after parsing config files, and then after parsing the command line.
-
Greg Ward yazdı
after all -- turns out it doesn't buy us much after all...
-
Greg Ward yazdı
* 'get_command_obj()' now sets command attributes based on the 'command_options' dictionary * some typos fixed * kludged 'parse_config_files()' to re-initialize the ConfigParser instance after each file, so we know for sure which config file each option comes form * added lots of handy debugging output
-
Fred Drake yazdı
Typo: "dictionairy" --> "dictionary" (twice).
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
in the option list is an attribute of the OptionDummy that will be initialized to None.
-
Greg Ward yazdı
-
Greg Ward yazdı
command-line parsing code, splitting it up into several methods (new methods: '_parse_command_opts()', '_show_help()') and making it put options into the 'command_options' dictionary rather than instantiating command objects and putting them there. Lots of other little changes: * merged 'find_command_class()' and 'create_command_obj()' and called the result 'get_command_class()' * renamed 'find_command_obj()' to 'get_command_obj()', and added command object creation and maintenance of the command object cache to its responsibilities (taken over from 'create_command_obj()') * parse config files one-at-a-time, so we can keep track of the filename for later error reporting * tweaked some help messages * fixed up many obsolete comments and docstrings
-
- 22 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 21 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
is no index.htm[l] file, and when it is called, it also spits out the headers. When an index.htm[l] file is present, the regular (file access) path is followed. Also, when the guessed content-type matches text/*, open the file in text mode; otherwise in binary mode.
-
- 20 May, 2000 7 kayıt (commit)
-
-
Greg Ward yazdı
destination path, otherwise show just the directory.
-
Greg Ward yazdı
objects, it now has method names. Added three methods, 'has_lib()', 'has_scripts()', and 'has_data()' to determine if we need to run each of the three possible sub-commands. Added 'get_sub_commands()' to take care of finding the methods named in 'sub_commands', running them, and interpreting the results to build a list of sub-commands that actually have to be run.
-
Greg Ward yazdı
have any Python modules to install (rather than bomb when we try to copy a non-existent directory).
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
implemented by subclasses, since they are needed by 'gen_lib_options()'.
-
Greg Ward yazdı
and 'link_shared_lib()'. In MSVCCompiler, this is meaningful: it adds /EXPORT: options to the linker command line. In UnixCCompiler, it is ignored.
-
- 19 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 18 May, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Fred Drake yazdı
Francois Pinard.
-
- 17 May, 2000 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 16 May, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
BeOS (up to 5.0) lacks <netinet/tcp.h>.
-
- 15 May, 2000 2 kayıt (commit)
-
-
Jack Jansen yazdı
Blacklist HRDisposeReference and call it in the dispose routine.
-
Jack Jansen yazdı
-
- 14 May, 2000 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 13 May, 2000 4 kayıt (commit)
-
-
Gregory P. Smith yazdı
Added some guiding comments.
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
(Completely uninspected and untested by me, this is just to get the code into CVS!)
-
Gregory P. Smith yazdı
have to worry about "or []" in 'get_outputs()'.
-