]> granicus.if.org Git - python/log
python
24 years agoExplained that you have to checkout the Mac portion of Python in a separate
Jack Jansen [Fri, 11 Feb 2000 23:14:46 +0000 (23:14 +0000)]
Explained that you have to checkout the Mac portion of Python in a separate
folder and then move it to the Python hierarchy.

24 years agoadd support for Lambda nodes
Jeremy Hylton [Fri, 11 Feb 2000 20:27:07 +0000 (20:27 +0000)]
add support for Lambda nodes

change resolution of local name ops (LOAD_FAST).  i think it makes
sense now.  if it is an argument or a local var name that it used, it
must be in varnames.  if it is a local var name that is used, it must
also be in names

24 years agoDitched '_find_SET()', since it was a no-value-added wrapper around
Greg Ward [Fri, 11 Feb 2000 02:52:39 +0000 (02:52 +0000)]
Ditched '_find_SET()', since it was a no-value-added wrapper around
  'get_msvc_paths()'.
Renamed '_do_SET()' to 'set_path_env_var()', tweaked docstring, and
  cosmetically tweaked code.
Stylistic changes to MSVCCompiler constructor (variable renaming
  and type consistency).

24 years agoLatest patch from Thomas Heller/Robin Becker:
Greg Ward [Fri, 11 Feb 2000 02:47:15 +0000 (02:47 +0000)]
Latest patch from Thomas Heller/Robin Becker:
  * tweak my docstrings
  * fix None returns to empty list
  * reshuffle responsibilities between '_find_exe()', '_find_SET()', and
    the MSVCCompiler constructor -- now the constructor worries about
    fetching the version list and determining the most recent one
  * added "/W3" compile option
Also, I added/tweaked some docstrings.

24 years agoadd loop handling via
Jeremy Hylton [Thu, 10 Feb 2000 20:55:50 +0000 (20:55 +0000)]
add loop handling via

Loop object to handle StackRegs
loops stack attr on CodeGenreeator to hold the current loop object

add support for nodes While, Break, Continue

24 years agoadd an __len__ to Set and Stack
Jeremy Hylton [Thu, 10 Feb 2000 20:54:27 +0000 (20:54 +0000)]
add an __len__ to Set and Stack

24 years agoDocument the API changes to the nntplib module (exceptions become
Barry Warsaw [Thu, 10 Feb 2000 20:26:45 +0000 (20:26 +0000)]
Document the API changes to the nntplib module (exceptions become
classes, NNTP.__init__() grows a new optional argument to set reader
mode on the server).

24 years agoAdded new exception classes:
Barry Warsaw [Thu, 10 Feb 2000 20:25:53 +0000 (20:25 +0000)]
Added new exception classes:

    NNTPError - derived from Exception, it's the base class for all
    other exceptions in this module

    NNTPReplyError - what used to be error_reply

    NNTPTemporaryError - what used to be error_temp

    NNTPPermanentError - what used to be error_perm

    NNTPProtocolError - what used to be error_proto

    NNTPDataError - what used to be error_data

All the old names are retained for backwards compatibility; they point
to the class that replaces them.  Also, any code in this module that
raises an exception, now does so with the exception class.

NNTP.__init__(): Added a new optional argument `readermode', which is
a flag that defaults to false.  When set to true, the "mode reader"
command is sent to the NNTP server before user authentication.  Reader
mode is sometimes necessary if you are connecting to an NNTP server on
the local machine and intend to call reader-specific comamnds, such as
`group'.  If you get unexpected NNTPPermanentErrors, you might need to
set readermode.  Patch provided by Thomas Wouters (who include the
standard disclaimer on is patches@python.org submission), and inspired
by Jim Tittsler.

24 years agoEnable -t when compiling Python library modules in libinstall (.pyc
Fred Drake [Thu, 10 Feb 2000 17:23:44 +0000 (17:23 +0000)]
Enable -t when compiling Python library modules in libinstall (.pyc
version only).

Enable -tt for the regression test.

Very similar to Skip's patch.

24 years agoadd namespace attr to CodeGenerator, can be either MODULE_NAMESPACE or
Jeremy Hylton [Thu, 10 Feb 2000 17:20:39 +0000 (17:20 +0000)]
add namespace attr to CodeGenerator, can be either MODULE_NAMESPACE or
FUNCTION_NAMESPACE.  initialize in __init__ and reset in
generateFunctionCode.

replace direct issue of STORE_FAST, STORE_GLOBAL, etc. with call to
storeName; same for loadName and deleteName

the new {store,load,delete}Name methods use the namespace attr and the
local variable stack to determine the correct bytecode to issue

24 years agoUntabify to pass the -tt test.
Fred Drake [Thu, 10 Feb 2000 17:17:14 +0000 (17:17 +0000)]
Untabify to pass the -tt test.

24 years agoDetabify.
Fred Drake [Thu, 10 Feb 2000 16:21:11 +0000 (16:21 +0000)]
Detabify.

I ran "expand" instead of using Skip's patch, but it's all the same.

24 years agoIn AskYesNoCancel() treat the "yes" and "no" buttons the same way as the cancel
Jack Jansen [Thu, 10 Feb 2000 16:15:53 +0000 (16:15 +0000)]
In AskYesNoCancel() treat the "yes" and "no" buttons the same way as the cancel
button (i.e. an empty label hides the button).

24 years agoMake this pass the -tt test.
Fred Drake [Thu, 10 Feb 2000 15:31:07 +0000 (15:31 +0000)]
Make this pass the -tt test.

24 years agoStylistic changes to the registry-grovelling code: code formatting, changed
Greg Ward [Thu, 10 Feb 2000 02:52:42 +0000 (02:52 +0000)]
Stylistic changes to the registry-grovelling code: code formatting, changed
function names, dbetter (hopefully) ocstrings, and comments.

24 years agoTypecheck 'output_dir' argument to compile/link methods.
Greg Ward [Thu, 10 Feb 2000 02:51:32 +0000 (02:51 +0000)]
Typecheck 'output_dir' argument to compile/link methods.

24 years agoPath from Thomas Heller: resurrect the .def file kludge while preserving the
Greg Ward [Thu, 10 Feb 2000 02:17:06 +0000 (02:17 +0000)]
Path from Thomas Heller: resurrect the .def file kludge while preserving the
/export option mini-kludge.

24 years agoPatch from Thomas heller:
Greg Ward [Thu, 10 Feb 2000 02:15:52 +0000 (02:15 +0000)]
Patch from Thomas heller:
  * don't need to mention python<ver>.lib -- it's done by a pragma
  * add debug flags for compile and link, and use them
  * fix 'link_shared_library()' to pass everything to 'link_shared_object()'
  * change filename when shared object with debug info (ugh)

24 years agoadd ExampleASTVisitor:
Jeremy Hylton [Thu, 10 Feb 2000 00:47:08 +0000 (00:47 +0000)]
add ExampleASTVisitor:
* prints out examples of nodes that are handled by visitor.  simply a
  development convenience

remove NestedCodeGenerator -- it was bogus after all
replace with generateFunctionCode, a method to call to generate code
  for a function instead of a top-level module

fix impl of visitDiscard (most pop stack)
emit lineno for pass

handle the following new node types: Import, From, Getattr, Subscript,
Slice, AssAttr, AssTuple, Mod, Not, And, Or, List

LocalNameFinder: remove names declared as globals for locals

PythonVMCode: pass arg names to constructor, force varnames to contain
them all (even if they aren't referenced)

add -q option on command line to disable stdout

24 years agoadd remove method to set
Jeremy Hylton [Thu, 10 Feb 2000 00:43:22 +0000 (00:43 +0000)]
add remove method to set

24 years agoAdded 'debug' option, and changed compile/link calls to use it.
Greg Ward [Wed, 9 Feb 2000 02:20:14 +0000 (02:20 +0000)]
Added 'debug' option, and changed compile/link calls to use it.

24 years agoAdded 'debug' option (just there for 'build_ext' and 'build_lib' commands
Greg Ward [Wed, 9 Feb 2000 02:19:49 +0000 (02:19 +0000)]
Added 'debug' option (just there for 'build_ext' and 'build_lib' commands
to fallback to if the user doesn't set it for those commands.

24 years agoAdded 'debug' flags to compile and link methods, and added dummy code for
Greg Ward [Wed, 9 Feb 2000 02:18:39 +0000 (02:18 +0000)]
Added 'debug' flags to compile and link methods, and added dummy code for
  someone who knows Windows/MSVC++ to come along and add the right flags.
Comment noting that 'link_static_lib()' signature is inconsistent with
  the other compiler classes (uh-oh!)

24 years agoAdded 'debug' flags to compile and link methods, and modified code to add
Greg Ward [Wed, 9 Feb 2000 02:17:00 +0000 (02:17 +0000)]
Added 'debug' flags to compile and link methods, and modified code to add
'-g' flag to compiler/linker command lines when it's true.

24 years agoAdded 'debug' flag to compile and link method signatures.
Greg Ward [Wed, 9 Feb 2000 02:16:14 +0000 (02:16 +0000)]
Added 'debug' flag to compile and link method signatures.
Doc fix: several paragraphs under 'link_static_lib()' moved to
  'link_shared_lib()', where they belong.

24 years agoadd optional verbose arg to walk function. it overrides the global
Jeremy Hylton [Tue, 8 Feb 2000 21:15:48 +0000 (21:15 +0000)]
add optional verbose arg to walk function.  it overrides the global
VERBOSE setting for the ASTVisitor

add getopt handling for one or more -v args

rename ForwardRef to StackRef, because it isn't necessarily directional

CodeGenerator:
* add assertStackEmpty method.  prints warning if stack is not empty
  when it should be
* define methods for AssName, UNARY_*, For

PythonVMCode:
* fix mix up between hasjrel and hasjabs for address calculation

24 years agomake all unary operators have a single child node called expr
Jeremy Hylton [Tue, 8 Feb 2000 21:06:19 +0000 (21:06 +0000)]
make all unary operators have a single child node called expr

24 years agoadd spaces to comparison names is not and not in to match dis
Jeremy Hylton [Tue, 8 Feb 2000 19:58:33 +0000 (19:58 +0000)]
add spaces to comparison names is not and not in to match dis

24 years agonow produces valid pyc files for a least a trivial subset of the
Jeremy Hylton [Tue, 8 Feb 2000 19:01:29 +0000 (19:01 +0000)]
now produces valid pyc files for a least a trivial subset of the
language.

CodeGenerator:
* modify to track stack depth
* add emit method that call's PythonVMCode's makeCodeObject
* thread filenames through in hackish way
* set flags for code objects for modules and functions
  XXX the docs for the flags seem out of date and/or incomplete

PythonVMCode:
* add doc string describing the elements of a real code object

LineAddrTable:
* creates an lnotab (no quite correctly though)

24 years agoconstants from transformer
Jeremy Hylton [Tue, 8 Feb 2000 18:57:51 +0000 (18:57 +0000)]
constants from transformer

24 years agomove constants out of transformer so that they can be shared with ast
Jeremy Hylton [Tue, 8 Feb 2000 18:57:32 +0000 (18:57 +0000)]
move constants out of transformer so that they can be shared with ast
add varargs and kwargs attributes to Function nodes

24 years agoget_config_h_filename(): Support NT as well as Posix systems.
Fred Drake [Tue, 8 Feb 2000 15:55:42 +0000 (15:55 +0000)]
get_config_h_filename():  Support NT as well as Posix systems.

_init_nt():  Use get_config_h_filename() instead of figuring out the
             name directly.

             g['SO'] should be set to '.pyd'.

             Adjust some minor coding nits.

24 years agoRevised version (thank to Thomas Heller and Robin Becker) that tries a lot
Greg Ward [Tue, 8 Feb 2000 02:39:44 +0000 (02:39 +0000)]
Revised version (thank to Thomas Heller and Robin Becker) that tries a lot
harder to find the MSVC compiler (mainly by using the registry).

24 years agoDitch .def file kludge for (much smaller) /export option kludge.
Greg Ward [Tue, 8 Feb 2000 02:37:15 +0000 (02:37 +0000)]
Ditch .def file kludge for (much smaller) /export option kludge.

24 years agoProtect against core dumps in gdbm: don't allow access by key once the
Fred Drake [Mon, 7 Feb 2000 17:19:41 +0000 (17:19 +0000)]
Protect against core dumps in gdbm: don't allow access by key once the
database is closed.  Raise gdbm.error instead.

Bug report #198 submitted by Barry Haddow <bhaddow@orbism.com>.

24 years agoAdded test case for accessing gsbm database by key after it's closed;
Fred Drake [Mon, 7 Feb 2000 17:15:48 +0000 (17:15 +0000)]
Added test case for accessing gsbm database by key after it's closed;
it should raise gdbm.error.

24 years agoSame patch (also by Mark Hammond) for this straggler project file as
Guido van Rossum [Mon, 7 Feb 2000 15:29:43 +0000 (15:29 +0000)]
Same patch (also by Mark Hammond) for this straggler project file as
for the other projects, to move the x86 project names back to what
they were.

24 years agoAdded 'libraries' option for use by the 'build_lib' command.
Greg Ward [Sat, 5 Feb 2000 02:24:52 +0000 (02:24 +0000)]
Added 'libraries' option for use by the 'build_lib' command.
Typo fix.

24 years agoRun the 'build_lib' command before building extensions, if necessary.
Greg Ward [Sat, 5 Feb 2000 02:24:16 +0000 (02:24 +0000)]
Run the 'build_lib' command before building extensions, if necessary.

24 years agoNew command to build C (and C++, hopefully) libraries needed by extensions
Greg Ward [Sat, 5 Feb 2000 02:23:59 +0000 (02:23 +0000)]
New command to build C (and C++, hopefully) libraries needed by extensions
in the current distribution: motivated by PIL's libImaging.

24 years agoTweaked various comments, docstrings, and error messages.
Greg Ward [Sat, 5 Feb 2000 02:23:16 +0000 (02:23 +0000)]
Tweaked various comments, docstrings, and error messages.

24 years agoPatch from Paul Sokolovsky <Paul.Sokolovsky@technologist.com>:
Fred Drake [Fri, 4 Feb 2000 20:33:49 +0000 (20:33 +0000)]
Patch from Paul Sokolovsky <Paul.Sokolovsky@technologist.com>:

      Attached is patch (against 1.5.2 release) to allow some modules
to be buildable as pyd's (usual &PyType_Type stuff).

24 years agorapid evolution towards producing real .pyc files (even though I don't
Jeremy Hylton [Fri, 4 Feb 2000 19:37:35 +0000 (19:37 +0000)]
rapid evolution towards producing real .pyc files (even though I don't
handle most of the language syntax yet)

create NestedCodeGenerator used to generator the separate code object
that needs to be passed as an argument to MAKE_FUNCTION when a def
stmt is found (probably useful for class too)

change CodeGenerator.visitFunction to use the NestedCG

add CompiledModule class to handle creation of .pyc (pretty minimal
for now)

add makeCodeObject method to PythonVMCode that replaces symbolic names
with indexes into slots of the code code.  the design of this
class will probably need to be revised.

24 years agoAdded a simple test program to disassemble a file, invoked as __main__.
Guido van Rossum [Fri, 4 Feb 2000 17:47:55 +0000 (17:47 +0000)]
Added a simple test program to disassemble a file, invoked as __main__.

24 years agoActually, the previous batch's comment should have been different;
Guido van Rossum [Fri, 4 Feb 2000 15:39:30 +0000 (15:39 +0000)]
Actually, the previous batch's comment should have been different;
*this* set of patches is Ka-Ping's final sweep:

The attached patches update the standard library so that all modules
have docstrings beginning with one-line summaries.

A new docstring was added to formatter.  The docstring for os.py
was updated to mention nt, os2, ce in addition to posix, dos, mac.

24 years agoThe third and final doc-string sweep by Ka-Ping Yee.
Guido van Rossum [Fri, 4 Feb 2000 15:28:42 +0000 (15:28 +0000)]
The third and final doc-string sweep by Ka-Ping Yee.

The attached patches update the standard library so that all modules
have docstrings beginning with one-line summaries.

A new docstring was added to formatter.  The docstring for os.py
was updated to mention nt, os2, ce in addition to posix, dos, mac.

24 years agoMore trivial comment -> docstring transformations by Ka-Ping Yee,
Guido van Rossum [Fri, 4 Feb 2000 15:10:34 +0000 (15:10 +0000)]
More trivial comment -> docstring transformations by Ka-Ping Yee,
who writes:

Here is batch 2, as a big collection of CVS context diffs.
Along with moving comments into docstrings, i've added a
couple of missing docstrings and attempted to make sure more
module docstrings begin with a one-line summary.

I did not add docstrings to the methods in profile.py for
fear of upsetting any careful optimizations there, though
i did move class documentation into class docstrings.

The convention i'm using is to leave credits/version/copyright
type of stuff in # comments, and move the rest of the descriptive
stuff about module usage into module docstrings.  Hope this is
okay.

24 years agochecking in initial weekend's work
Jeremy Hylton [Fri, 4 Feb 2000 00:28:21 +0000 (00:28 +0000)]
checking in initial weekend's work

compile.py: ASTVisitor framework plus bits of a code generator that
    should be bug-for-buf compatible with compile.c

misc.py: Set and Stack helpers

test.py: a bit of simple sample code that compile.py will work on

24 years agomake p2c a package
Jeremy Hylton [Fri, 4 Feb 2000 00:25:34 +0000 (00:25 +0000)]
make p2c a package

24 years agothree files from the p2c cvs tree. the message here indicates the
Jeremy Hylton [Fri, 4 Feb 2000 00:25:23 +0000 (00:25 +0000)]
three files from the p2c cvs tree.  the message here indicates the
revision number the p2c cvs tree.

COPYRIGHT: 1.1
ast.py: 1.3
transformer.py: 1.11

24 years agoImproved an error message.
Greg Ward [Thu, 3 Feb 2000 23:07:54 +0000 (23:07 +0000)]
Improved an error message.
Announce when we start building each extension (better feedback).

24 years agoChanged 'compile()' method to compile files one-at-a-time -- gives better
Greg Ward [Thu, 3 Feb 2000 23:07:19 +0000 (23:07 +0000)]
Changed 'compile()' method to compile files one-at-a-time -- gives better
feedback and, theoretically, the opportunity to set compiler flags
on a per-file basis.

24 years agoMark Hammond renames the x86 projects back to what they were named
Guido van Rossum [Thu, 3 Feb 2000 17:19:35 +0000 (17:19 +0000)]
Mark Hammond renames the x86 projects back to what they were named
before the patch by Trent Mick.  Since he now also works for
ActiveState, I suppose he overrides Trent. :-)

24 years agoThe dircmp module is now obsolete.
Fred Drake [Thu, 3 Feb 2000 15:27:26 +0000 (15:27 +0000)]
The dircmp module is now obsolete.

24 years agoThese modules are now declared obsolete.
Fred Drake [Thu, 3 Feb 2000 15:26:16 +0000 (15:26 +0000)]
These modules are now declared obsolete.

24 years agoAccording to Harri Pasanen, the Solaris+gcc test for LINKFORSHARED
Guido van Rossum [Thu, 3 Feb 2000 13:50:24 +0000 (13:50 +0000)]
According to Harri Pasanen, the Solaris+gcc test for LINKFORSHARED
needed an adaptation for the latest gcc -- we need to grep stderr as
well as stdout for the magic string BFD.  (Does anybody know what BFD
means?)

24 years agoAccording to Harri Pasanen, the Solaris+gcc test for LINKFORSHARED
Guido van Rossum [Thu, 3 Feb 2000 13:42:50 +0000 (13:42 +0000)]
According to Harri Pasanen, the Solaris+gcc test for LINKFORSHARED
needed an adaptation for the latest gcc -- we need to grep stderr as
well as stdout for the magic string BFD.  (Does anybody know what BFD
means?)

24 years ago# module filecmp
Guido van Rossum [Thu, 3 Feb 2000 00:41:22 +0000 (00:41 +0000)]
# module filecmp
# combo of old cmp, cmpcache and dircmp with redundancies removed
#
# bugs fixed:
#   dircmp.dircmp was not ignoring IGNORES
#   old stuff could falsely report files as "identical" when contents actually differed
#
# enhancements:
#   dircmp has a more straightforward interface
#cmp enhanced by Moshe Zadca
#dircmp enhanced byGordon McMillan

[some layout changes by GvR]

24 years agoIn _fileobject, optimize read() a bit (it could be really slow), and
Guido van Rossum [Wed, 2 Feb 2000 16:57:32 +0000 (16:57 +0000)]
In _fileobject, optimize read() a bit (it could be really slow), and
remove "import string" -- use string methods instead!

24 years agoOptimize abspath() slightly for the case that win32api can't be
Guido van Rossum [Wed, 2 Feb 2000 16:54:39 +0000 (16:54 +0000)]
Optimize abspath() slightly for the case that win32api can't be
imported; in that case, abspath is replaced by a fallback version.

24 years agoMake read() and readlines() conform more to the file object interface:
Guido van Rossum [Wed, 2 Feb 2000 16:51:06 +0000 (16:51 +0000)]
Make read() and readlines() conform more to the file object interface:
the default arg for read() is -1, not None, and readlines() has an
optional argument (which for now is ignored).

24 years agoMass patch by Ka-Ping Yee:
Guido van Rossum [Wed, 2 Feb 2000 15:10:15 +0000 (15:10 +0000)]
Mass patch by Ka-Ping Yee:

    1. Comments at the beginning of the module, before
       functions, and before classes have been turned
       into docstrings.

    2. Tabs are normalized to four spaces.

Also, removed the "remove" function from dircmp.py, which reimplements
list.remove() (it must have been very old).

24 years agoPatch from Joe Van Andel: fix arg to % operator in warning.
Greg Ward [Wed, 2 Feb 2000 00:07:14 +0000 (00:07 +0000)]
Patch from Joe Van Andel: fix arg to % operator in warning.

24 years agoComment fix.
Greg Ward [Wed, 2 Feb 2000 00:05:14 +0000 (00:05 +0000)]
Comment fix.
Always use normalized (with os.path.normpath()) versions of prefix and
  exec_prefix.

24 years agoSjoerd Mullender writes:
Guido van Rossum [Tue, 1 Feb 2000 23:36:55 +0000 (23:36 +0000)]
Sjoerd Mullender writes:

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).

24 years agoAdded docstring to crypt.crypt() based on the documentation.
Fred Drake [Tue, 1 Feb 2000 20:12:39 +0000 (20:12 +0000)]
Added docstring to crypt.crypt() based on the documentation.

24 years agoThe initialization of posix_putenv_garbage should only be done when it
Guido van Rossum [Mon, 31 Jan 2000 18:41:26 +0000 (18:41 +0000)]
The initialization of posix_putenv_garbage should only be done when it
is defined...

25 years agoAllow either README or README.txt as a "standard file".
Greg Ward [Sun, 30 Jan 2000 20:22:27 +0000 (20:22 +0000)]
Allow either README or README.txt as a "standard file".

25 years agoFixed broken list extend in 'copy_tree()'.
Greg Ward [Sun, 30 Jan 2000 19:57:48 +0000 (19:57 +0000)]
Fixed broken list extend in 'copy_tree()'.

25 years agoAdded 'description' class attribute to every command class (to help the
Greg Ward [Sun, 30 Jan 2000 18:34:15 +0000 (18:34 +0000)]
Added 'description' class attribute to every command class (to help the
  '--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).

25 years agoAdded 'dist' command.
Greg Ward [Sun, 30 Jan 2000 18:31:34 +0000 (18:31 +0000)]
Added 'dist' command.

25 years agoImprovements to the help system:
Greg Ward [Sun, 30 Jan 2000 18:30:32 +0000 (18:30 +0000)]
Improvements to the help system:
  * "--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

25 years agoAdded missing run of corresponding 'build' command.
Greg Ward [Sun, 30 Jan 2000 15:07:56 +0000 (15:07 +0000)]
Added missing run of corresponding 'build' command.

25 years agoBig oops: macfs has always been using a private exception but calling it mac.error.
Jack Jansen [Mon, 24 Jan 2000 10:37:59 +0000 (10:37 +0000)]
Big oops: macfs has always been using a private exception but calling it mac.error.
It now uses MacOS.Error (the OSErr valued error) and advertises that too. This
fix shouldn't break anything, I guess.

25 years agoHmm, the project wasn't a 5.3 file, despite the log msg. Now it is.
Jack Jansen [Mon, 24 Jan 2000 10:21:07 +0000 (10:21 +0000)]
Hmm, the project wasn't a 5.3 file, despite the log msg. Now it is.

25 years agoBuild the Nav module too.
Jack Jansen [Mon, 24 Jan 2000 10:15:59 +0000 (10:15 +0000)]
Build the Nav module too.

25 years agoIf there's an error in an fsspec argument raise MacOS.Error, not ValueError.
Jack Jansen [Mon, 24 Jan 2000 09:56:06 +0000 (09:56 +0000)]
If there's an error in an fsspec argument raise MacOS.Error, not ValueError.

25 years agoTrent Mick: Setup PC configuration so that MSDEV chooses the x86
Guido van Rossum [Fri, 21 Jan 2000 00:03:42 +0000 (00:03 +0000)]
Trent Mick: Setup PC configuration so that MSDEV chooses the x86
release project config as the default.

25 years agoDon't insert extra indentation before <title> elements.
Fred Drake [Thu, 20 Jan 2000 22:51:14 +0000 (22:51 +0000)]
Don't insert extra indentation before <title> elements.

25 years agoThe rest of the changes by Trent Mick and Dale Nagata for warning-free
Guido van Rossum [Thu, 20 Jan 2000 22:32:56 +0000 (22:32 +0000)]
The rest of the changes by Trent Mick and Dale Nagata for warning-free
compilation on NT Alpha.  Mostly added casts etc.

25 years agoFix some broken links.
Guido van Rossum [Thu, 20 Jan 2000 21:37:19 +0000 (21:37 +0000)]
Fix some broken links.

25 years agoChanges by Trent Mick (of ActiveState) and Dale Nagata to support
Guido van Rossum [Thu, 20 Jan 2000 21:31:41 +0000 (21:31 +0000)]
Changes by Trent Mick (of ActiveState) and Dale Nagata to support
building for NT Alpha as well as NT x86.

25 years agoTwo patches from Jack Jansen:
Guido van Rossum [Thu, 20 Jan 2000 20:49:28 +0000 (20:49 +0000)]
Two patches from Jack Jansen:

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

25 years agoEXPERIMENTAL
Jeremy Hylton [Thu, 20 Jan 2000 18:19:08 +0000 (18:19 +0000)]
EXPERIMENTAL

An extensible library for opening URLs using a variety protocols.
Intended as a replacement for urllib.

25 years agoChange two occurrences of type(x) <> types.CodeType into
Guido van Rossum [Wed, 19 Jan 2000 21:57:30 +0000 (21:57 +0000)]
Change two occurrences of type(x) <> types.CodeType into
isinstance(x, types.CodeType).

Suggested by Finn Bock.

25 years agoMade all textfields in message and question boxes minimal height and invisible, and...
Jack Jansen [Tue, 18 Jan 2000 13:36:02 +0000 (13:36 +0000)]
Made all textfields in message and question boxes minimal height and invisible, and use AutoSizeDialog() and ShowWindow() before doing interaction.

25 years agoFix indentation bug.
Greg Ward [Mon, 17 Jan 2000 21:58:07 +0000 (21:58 +0000)]
Fix indentation bug.

25 years agoCatch OSError from 'spawnv()' in '_spawn_nt()'.
Greg Ward [Mon, 17 Jan 2000 21:57:55 +0000 (21:57 +0000)]
Catch OSError from 'spawnv()' in '_spawn_nt()'.
Tweaked error messages in '_spawn_posix()'.

25 years agoRemoved /GD switch -- currently ignored by MSVC.
Greg Ward [Mon, 17 Jan 2000 21:57:17 +0000 (21:57 +0000)]
Removed /GD switch -- currently ignored by MSVC.

25 years agoAdded compiler flags suggested by Thomas Heller: optimize, use multi-threaded
Greg Ward [Mon, 17 Jan 2000 20:40:48 +0000 (20:40 +0000)]
Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded
RT library.

25 years agoAdded missing import.
Greg Ward [Mon, 17 Jan 2000 20:23:34 +0000 (20:23 +0000)]
Added missing import.
Fixed 'make_release_tree()' to copy files if 'os.link()' doesn't exist.

25 years agoAdded code to use Jim Ahlstrom's zipfile.py module if the external zip
Greg Ward [Mon, 17 Jan 2000 18:04:04 +0000 (18:04 +0000)]
Added code to use Jim Ahlstrom's zipfile.py module if the external zip
command wasn't found or failed.  (Code supplied by Thomas Heller
<thomas.heller@ion-tof.com>.)

25 years agoFix library filename methods -- there is no 'lib' prefix under DOS/Windows.
Greg Ward [Mon, 17 Jan 2000 18:00:04 +0000 (18:00 +0000)]
Fix library filename methods -- there is no 'lib' prefix under DOS/Windows.

25 years agoAlways run sys.prefix and sys.exec_prefix through 'os.path.normpath()'
Greg Ward [Mon, 17 Jan 2000 16:25:59 +0000 (16:25 +0000)]
Always run sys.prefix and sys.exec_prefix through 'os.path.normpath()'
before storing or using.

25 years agoDitch unneeded imports.
Greg Ward [Mon, 17 Jan 2000 16:25:17 +0000 (16:25 +0000)]
Ditch unneeded imports.

25 years agoFix by Nick Russo in processing of timezone in test program; the
Guido van Rossum [Mon, 17 Jan 2000 14:11:04 +0000 (14:11 +0000)]
Fix by Nick Russo in processing of timezone in test program; the
ParsedDate didn't have the correct day of week.

25 years agoAccording to Ron Bickers, and with apparent approval of Chris
Guido van Rossum [Fri, 14 Jan 2000 16:33:09 +0000 (16:33 +0000)]
According to Ron Bickers, and with apparent approval of Chris
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!

25 years ago- Actually _implemented_ SetFolder()
Jack Jansen [Thu, 13 Jan 2000 16:26:35 +0000 (16:26 +0000)]
- Actually _implemented_ SetFolder()
- Fixed StandardPutFile: prompt, default
- Check explicitly for userCanceledErr, pass other Nav.error exceptions through.

25 years agoHandling of defaultLocation argument was wrong, causing a crash when used. Fixed.
Jack Jansen [Thu, 13 Jan 2000 16:24:32 +0000 (16:24 +0000)]
Handling of defaultLocation argument was wrong, causing a crash when used. Fixed.

25 years agoList objects obtained through as_List(resource) are not auto-disposed upon
Jack Jansen [Thu, 13 Jan 2000 16:23:39 +0000 (16:23 +0000)]
List objects obtained through as_List(resource) are not auto-disposed upon
Python object freeing.