]> granicus.if.org Git - python/log
python
26 years agoSjoerd Mullender:
Guido van Rossum [Mon, 21 Dec 1998 18:15:28 +0000 (18:15 +0000)]
Sjoerd Mullender:

- Fixed a bug where a syntax error was reported when a document
  started with white space.  (White space at the start of a document
  is valid if there is no XML declaration.)
- Improved the speed quite a bit for documents that don't make use of
  namespaces.

26 years agoreplace missing zalloc initialization (test_zlib now runs
Jeremy Hylton [Mon, 21 Dec 1998 17:15:00 +0000 (17:15 +0000)]
replace missing zalloc initialization (test_zlib now runs
successfully)

26 years agoremove debugging fprintf (should have checked this before previous
Jeremy Hylton [Mon, 21 Dec 1998 16:40:21 +0000 (16:40 +0000)]
remove debugging fprintf (should have checked this before previous
checkin)

26 years agoTypo discovered by Just.
Guido van Rossum [Mon, 21 Dec 1998 16:26:31 +0000 (16:26 +0000)]
Typo discovered by Just.

26 years agoUse __stdin__ instead of stdin to derive FileType -- safer against
Guido van Rossum [Sat, 19 Dec 1998 23:53:33 +0000 (23:53 +0000)]
Use __stdin__ instead of stdin to derive FileType -- safer against
assignments.

26 years agoFred's sysconfig module.
Greg Ward [Fri, 18 Dec 1998 23:46:33 +0000 (23:46 +0000)]
Fred's sysconfig module.

26 years agopatches from Andrew
Jeremy Hylton [Fri, 18 Dec 1998 22:13:11 +0000 (22:13 +0000)]
patches from Andrew

NOTE: There is still a bug of some sort in the behavior of zlib.  In
at least one case, inflate returns Z_OK (which is typically
interpreted to mean that more output space is needed) when it has
finished inflating a buffer.  This has been reported as a bug to the
zlib maintainers; we may need to change the Python interface.

26 years agoChris H. writes:
Guido van Rossum [Fri, 18 Dec 1998 22:02:37 +0000 (22:02 +0000)]
Chris H. writes:

If we're going to put the PyOS_strtol() proto in intobject.h we should
include it here or the symbol isn't exported on PowerPC.

26 years agoImproved instructions by Chris H.
Guido van Rossum [Fri, 18 Dec 1998 22:00:58 +0000 (22:00 +0000)]
Improved instructions by Chris H.

26 years agoInitial checkin of distutils source files.
Greg Ward [Fri, 18 Dec 1998 22:00:30 +0000 (22:00 +0000)]
Initial checkin of distutils source files.

26 years agoSjoerd Mullender writes:
Guido van Rossum [Fri, 18 Dec 1998 20:17:13 +0000 (20:17 +0000)]
Sjoerd Mullender writes:

Here is my current version of xmllib.py and the documentation.  This
version has some API changes with respect to the version currently in
Python (also the one in 1.5.2a).
This version supports XML namespaces.

26 years agoWhen _PyString_Resize() reports failure, the variable referring to the
Fred Drake [Fri, 18 Dec 1998 19:46:59 +0000 (19:46 +0000)]
When _PyString_Resize() reports failure, the variable referring to the
string we wanted to resize is set to NULL.  Don't Py_DECREF() those
variables!  (5 places)

26 years agoFix the class browser to work even when the file is not on sys.path.
Guido van Rossum [Fri, 18 Dec 1998 15:52:54 +0000 (15:52 +0000)]
Fix the class browser to work even when the file is not on sys.path.

26 years agoForgot to check this in for Chris Herborth
Guido van Rossum [Fri, 18 Dec 1998 15:37:14 +0000 (15:37 +0000)]
Forgot to check this in for Chris Herborth

26 years agoSjoerd Mullender:
Guido van Rossum [Fri, 18 Dec 1998 15:25:22 +0000 (15:25 +0000)]
Sjoerd Mullender:

File names with "funny" characters get translated wrong by
pathname2url (any variety).  E.g. the (Unix) file "/ufs/sjoerd/#tmp"
gets translated into "/ufs/sjoerd/#tmp" which, when interpreted as a
URL is file "/ufs/sjoerd/" with fragment ID "tmp".

Here's an easy fix.  (An alternative fix would be to change the
various implementations of pathname2url and url2pathname to include
calls to quote and unquote.

[The main problem is with the normal use of URLs:
url = url2pathname(file)
transmit url
url, tag = splittag(url)
urlopen(url)
]

In addition, this patch fixes some uses of unquote:
- the host part of URLs should be unquoted
- the file path in the FTP URL should be unquoted before it is split
  into components.
- because of the latter, I removed all unquoting from ftpwrapper,
  and moved it to the caller, but that is not essential

26 years agoAdded a -q ('quiet') option to tabnanny, which causes only the names of
Andrew M. Kuchling [Fri, 18 Dec 1998 13:56:58 +0000 (13:56 +0000)]
Added a -q ('quiet') option to tabnanny, which causes only the names of
    offending files to be printed.  Good for emacs `tabnanny.py *.py`

26 years agoThe usual
Guido van Rossum [Thu, 17 Dec 1998 18:08:55 +0000 (18:08 +0000)]
The usual

26 years agoSeveral tiny changes:
Guido van Rossum [Thu, 17 Dec 1998 18:07:35 +0000 (18:07 +0000)]
Several tiny changes:

- remove PowerPC specific compiler switch for BeOS (Chris Herborth)
- FreeBSD/3 support
- check for pthread_detach in libc instead of _create

26 years agoPatch by Chris Herborth:
Guido van Rossum [Thu, 17 Dec 1998 18:03:10 +0000 (18:03 +0000)]
Patch by Chris Herborth:
have to use a const-correct prototype on BeOS or the compiler gets uppity.

26 years agoPatch by Chris Herborth:
Guido van Rossum [Thu, 17 Dec 1998 18:02:15 +0000 (18:02 +0000)]
Patch by Chris Herborth:
BeOS headers live in various non-standard places;
luckily, there's an environment variable that lists them all.

26 years agoChanges for new BeOS port by Chris Herborth
Guido van Rossum [Thu, 17 Dec 1998 18:00:33 +0000 (18:00 +0000)]
Changes for new BeOS port by Chris Herborth

26 years agoJim Fulton writes:
Guido van Rossum [Tue, 15 Dec 1998 21:43:15 +0000 (21:43 +0000)]
Jim Fulton writes:

This fixes a bug that can cause core dumps when doing seeks in input
StringIO objects. This has a number of other clean-ups.

26 years agoMove the prototype for dump_counts() to before where it is used.
Guido van Rossum [Tue, 15 Dec 1998 16:12:00 +0000 (16:12 +0000)]
Move the prototype for dump_counts() to before where it is used.
(This only applies when COUNT_ALLOCS is defined.)

26 years agoSjoerd Mullender:
Guido van Rossum [Tue, 15 Dec 1998 15:35:23 +0000 (15:35 +0000)]
Sjoerd Mullender:

When printing missing modules, also print the module they were
imported from.

26 years ago(py-goto-beginning-of-tqs): Finds the beginning of the triple quoted
Barry Warsaw [Tue, 15 Dec 1998 04:36:22 +0000 (04:36 +0000)]
(py-goto-beginning-of-tqs): Finds the beginning of the triple quoted
string we find ourselves in, based on the passed in delimiter.

(py-compute-indentation): Fixes for indentation errors when we land
inside a triple quoted string.  For example:

def foo():
   if os.path.isfile(o_pri_mbox_file) and os.path.isfile(o_pub_mbox_file):
       print """\
I found both a private and a public mbox archive file
    private: %s
    public : %s

I won't move either file, but you should choose one and move it to

    %s

You may want to merge them manually, but be careful about exposing private
correspondences to the public.""" % (
    o_pri_mbox_file, o_pub_mbox_file, mbox_file)
*----indentation would be wrong on this line.

26 years agoAdded most of the mechanism to change the strips from color variations
Barry Warsaw [Tue, 15 Dec 1998 01:04:38 +0000 (01:04 +0000)]
Added most of the mechanism to change the strips from color variations
to color constants (i.e. red constant, green constant, blue
constant).  But I haven't hooked this up yet because the UI gets more
crowded and the arrows don't reflect the correct values.

Added "Go to Black" and "Go to White" buttons.

26 years agoA start on the TestModExp applet
Barry Warsaw [Tue, 15 Dec 1998 01:02:51 +0000 (01:02 +0000)]
A start on the TestModExp applet
"Author" => "Contact"

26 years agogrid_bbox(): support new Tk API: grid bbox ?column row? ?column2 row2?
Barry Warsaw [Tue, 15 Dec 1998 00:44:15 +0000 (00:44 +0000)]
grid_bbox(): support new Tk API: grid bbox ?column row? ?column2 row2?

26 years ago"Author" -> "Contact"
Barry Warsaw [Mon, 14 Dec 1998 21:36:40 +0000 (21:36 +0000)]
"Author" -> "Contact"

26 years agoFixed bug reported to Gregor Hoffleit:
Andrew M. Kuchling [Mon, 14 Dec 1998 19:36:14 +0000 (19:36 +0000)]
Fixed bug reported to Gregor Hoffleit:
> mpz.mpz('\xff') should return mpz(255).  Instead it returns
> mpz(4294967295L). Looks like the constructor doesn't work with strings
> containing characters above chr(128).
Caused by using just 'char' where 'unsigned char' should have been used.

26 years agoAs noted by Per Cederqvist, new_buffersize() sometimes returns the
Guido van Rossum [Fri, 11 Dec 1998 20:44:56 +0000 (20:44 +0000)]
As noted by Per Cederqvist, new_buffersize() sometimes returns the
buffer increment, and sometimes the new buffer size.  Make it do what
its name says, and fix the one place where this matters to the caller.

Also add a comment explaining why we call lseek() and then ftell().

26 years agoWhen tracing references, reset the type and size of tuples allocated
Guido van Rossum [Fri, 11 Dec 1998 14:56:38 +0000 (14:56 +0000)]
When tracing references, reset the type and size of tuples allocated
from the fast free list -- the type (at least) is reset by
_Py_Dealloc().

26 years agoNeed to initialize self->safe_constructors early on to prevent crash
Guido van Rossum [Fri, 11 Dec 1998 03:20:00 +0000 (03:20 +0000)]
Need to initialize self->safe_constructors early on to prevent crash
in early dealloc.  Patch by Andrew Dalke.

26 years agoGregor Hoffleit writes:
Guido van Rossum [Fri, 11 Dec 1998 01:10:29 +0000 (01:10 +0000)]
Gregor Hoffleit writes:

But IMHO, this problem really reveals an annoyance in Python's
makesetup. makesetup puts the global include directories "$(INCLUDEPY)
$(EXECINCLUDEPY)" in front of the directories defined by the module in
Setup. Therefore global (potentially older) header files are preferred
over the ones set by the module, which makes it hard to compile new
versions of modules when the old versions are installed. AFAIK, the
other way around is common practice for most other software.

This patch to makesetup would be an potential fix for this problem,
though I don't know if it breaks anything else.

26 years agocreate_module_info(): New function: Modify a <section> to create a
Fred Drake [Thu, 10 Dec 1998 20:25:30 +0000 (20:25 +0000)]
create_module_info():  New function:  Modify a <section> to create a
<moduleinfo> element based on various meta information, and
strip some cruftiness.  This is more usable for information
extraction, and organizes the information more clearly.

cleanup_synopses():  Rewrite to use create_module_info(), so this
will work with multi-rooted "documents".

26 years agoRemove another {\rm ...} construct.
Fred Drake [Thu, 10 Dec 1998 19:57:52 +0000 (19:57 +0000)]
Remove another {\rm ...} construct.

Sheesh, where do these things come from?

26 years agoDon't pass around a list of known empty elements, since the ESIS
Fred Drake [Thu, 10 Dec 1998 18:31:37 +0000 (18:31 +0000)]
Don't pass around a list of known empty elements, since the ESIS
contains "e" events for them.  This wasn't used anyway.

26 years agoRemove prototypes for PyOS_strto[u]l -- Chris Herborth.
Guido van Rossum [Thu, 10 Dec 1998 16:57:44 +0000 (16:57 +0000)]
Remove prototypes for PyOS_strto[u]l -- Chris Herborth.

26 years agoAdd more SET_LINENO instructions in long argument lists
Guido van Rossum [Thu, 10 Dec 1998 16:56:22 +0000 (16:56 +0000)]
Add more SET_LINENO instructions in long argument lists

26 years agoRemove prototype for PyOS_strtol -- Chris Herborth.
Guido van Rossum [Thu, 10 Dec 1998 16:54:48 +0000 (16:54 +0000)]
Remove prototype for PyOS_strtol -- Chris Herborth.

26 years agoAdd prototypes for PyOS_strto[u]l -- Chris Herborth.
Guido van Rossum [Thu, 10 Dec 1998 16:54:17 +0000 (16:54 +0000)]
Add prototypes for PyOS_strto[u]l -- Chris Herborth.

26 years agoNeed to define DL_EXPORT, of course!
Guido van Rossum [Thu, 10 Dec 1998 16:50:49 +0000 (16:50 +0000)]
Need to define DL_EXPORT, of course!

26 years agoNo longer needed.
Guido van Rossum [Thu, 10 Dec 1998 16:50:14 +0000 (16:50 +0000)]
No longer needed.

26 years agoNeeded to add DL_EXPORT to (redundant?) extern decl of module init function.
Guido van Rossum [Thu, 10 Dec 1998 16:49:28 +0000 (16:49 +0000)]
Needed to add DL_EXPORT to (redundant?) extern decl of module init function.

26 years agoAdded a transform to start cleaning up the modulesynopsis stuff a
Fred Drake [Thu, 10 Dec 1998 05:07:09 +0000 (05:07 +0000)]
Added a transform to start cleaning up the modulesynopsis stuff a
little; more thinking is needed about what we really want.

26 years agoNits.
Fred Drake [Thu, 10 Dec 1998 05:04:21 +0000 (05:04 +0000)]
Nits.

26 years agoHandle SGML variant as well as XML variant. SGML is *much* more
Fred Drake [Thu, 10 Dec 1998 04:56:00 +0000 (04:56 +0000)]
Handle SGML variant as well as XML variant.  SGML is *much* more
likely to be used.

26 years agoRemoving the BeOS specific 'ar' utility -- no longer needed,
Guido van Rossum [Wed, 9 Dec 1998 22:24:27 +0000 (22:24 +0000)]
Removing the BeOS specific 'ar' utility -- no longer needed,
says Chris Herborth.

26 years agoIn read_multi, allow a subclass to override the class we instantiate
Guido van Rossum [Wed, 9 Dec 1998 22:16:46 +0000 (22:16 +0000)]
In read_multi, allow a subclass to override the class we instantiate
when we create a recursive instance, by setting the class variable
'FieldStorageClass' to the desired class.  By default, this is set to
None, in which case we use self.__class__ (as before).

26 years agoIn __getslice__, use self.__class__ instead of UserList.
Guido van Rossum [Wed, 9 Dec 1998 22:15:01 +0000 (22:15 +0000)]
In __getslice__, use self.__class__ instead of UserList.

26 years agoSjoerd Mullender writes:
Guido van Rossum [Wed, 9 Dec 1998 17:05:33 +0000 (17:05 +0000)]
Sjoerd Mullender writes:

The example Makefile.pre.in should also look at Setup.thread and
Setup.local.  Otherwise modules such as thread don't get incorporated
in extensions.

26 years agoMoved to Python 1.5.2/Lib
Guido van Rossum [Tue, 8 Dec 1998 20:39:36 +0000 (20:39 +0000)]
Moved to Python 1.5.2/Lib

26 years agoUpdate the descriptions of strftime() and strptime() to avoid
Fred Drake [Tue, 8 Dec 1998 19:59:36 +0000 (19:59 +0000)]
Update the descriptions of strftime() and strptime() to avoid
confusion, and describe what the "directives" are about.

26 years agoMake VC++ 5.0 compiler happy.
Guido van Rossum [Tue, 8 Dec 1998 17:37:19 +0000 (17:37 +0000)]
Make VC++ 5.0 compiler happy.

26 years agoCorrect the poplib example. Stephan Richter pointed out some problems
Guido van Rossum [Tue, 8 Dec 1998 16:30:10 +0000 (16:30 +0000)]
Correct the poplib example.  Stephan Richter pointed out some problems
with it.

26 years agoCorrectly document atan2.
Guido van Rossum [Tue, 8 Dec 1998 16:27:10 +0000 (16:27 +0000)]
Correctly document atan2.

26 years agoRename the parameters of atan2(), based on comments from Guido & Peter
Fred Drake [Tue, 8 Dec 1998 16:10:44 +0000 (16:10 +0000)]
Rename the parameters of atan2(), based on comments from Guido & Peter
A. Koren <pkoren@hex.net>.

26 years agoSjoerd patches the previous patch:
Guido van Rossum [Tue, 8 Dec 1998 13:25:00 +0000 (13:25 +0000)]
Sjoerd patches the previous patch:

In literal mode, also don't do anything about entity and character
references, or about closing CDATA elements.

26 years agoUndo the change here -- there's no point in declaring a static
Guido van Rossum [Tue, 8 Dec 1998 13:23:22 +0000 (13:23 +0000)]
Undo the change here -- there's no point in declaring a static
function as DL_IMPORT()!

26 years agoSjoerd writes:
Guido van Rossum [Mon, 7 Dec 1998 21:59:56 +0000 (21:59 +0000)]
Sjoerd writes:

When literal mode is entered it should exit automatically when the
matching close tag of the last unclosed open tag is encountered.  This
patch fixes this.

26 years agoAdding thread support for BeOS by Chris Herborth.
Guido van Rossum [Mon, 7 Dec 1998 21:56:59 +0000 (21:56 +0000)]
Adding thread support for BeOS by Chris Herborth.

26 years ago"singed" --> "signed" (3 places)
Fred Drake [Mon, 7 Dec 1998 17:13:18 +0000 (17:13 +0000)]
"singed" --> "signed" (3 places)

Noticed by Andrew MacIntyre <andymac@bullseye.apana.org.au>.

26 years agoPy_Main() must be DL_EXPORT too.
Guido van Rossum [Mon, 7 Dec 1998 14:28:47 +0000 (14:28 +0000)]
Py_Main() must be DL_EXPORT too.

26 years agoPatch by Jeff Rush:
Guido van Rossum [Mon, 7 Dec 1998 04:08:30 +0000 (04:08 +0000)]
Patch by Jeff Rush:

In SimpleHTTPServer.py, the server specified in test() should
be BaseHTTPServer.HTTPServer, in case the request handler should
want to reference the two attributes added by
BaseHTTPServer.server_bind:

        self.server_name = hostname
        self.server_port = port

There was some Bobo CGI code that wanted access to those attributes.

26 years agoPatch by Jeff Rush:
Guido van Rossum [Mon, 7 Dec 1998 04:08:03 +0000 (04:08 +0000)]
Patch by Jeff Rush:

In CGIHTTPServer.py, the list of acceptable formats is -split-
on spaces but -joined- on commas, resulting in double commas
in the joined text.  It appears harmless to my browser but
ought to be fixed anyway.

    'A, B, C' -> 'A,', 'B,', 'C,' -> 'A,,B,,C'

26 years agoOpen the file in binary mode -- so serving images from a Windows box
Guido van Rossum [Mon, 7 Dec 1998 03:53:18 +0000 (03:53 +0000)]
Open the file in binary mode -- so serving images from a Windows box
might actually work.

26 years agointermediate
Barry Warsaw [Sat, 5 Dec 1998 22:19:06 +0000 (22:19 +0000)]
intermediate

26 years agoFixed some bugs
Barry Warsaw [Sat, 5 Dec 1998 22:07:24 +0000 (22:07 +0000)]
Fixed some bugs

26 years agoFixed typos in --dump
Barry Warsaw [Sat, 5 Dec 1998 21:15:41 +0000 (21:15 +0000)]
Fixed typos in --dump

26 years agoClarify evaluation of default arguments at def time with more text and
Guido van Rossum [Fri, 4 Dec 1998 19:37:10 +0000 (19:37 +0000)]
Clarify evaluation of default arguments at def time with more text and
an example.

26 years agoAdded Doc strings -- by Chris Petrilli.
Guido van Rossum [Fri, 4 Dec 1998 19:26:43 +0000 (19:26 +0000)]
Added Doc strings -- by Chris Petrilli.

26 years agoWhen comparing bound methods, use identity test on the objects,
Guido van Rossum [Fri, 4 Dec 1998 18:52:55 +0000 (18:52 +0000)]
When comparing bound methods, use identity test on the objects,
not equality test.

26 years agoUse PyInt_AS_LONG macro instead of explicit inlining.
Guido van Rossum [Fri, 4 Dec 1998 18:51:36 +0000 (18:51 +0000)]
Use PyInt_AS_LONG macro instead of explicit inlining.

26 years agoOne more fprintf bites the dist -- use PySys_WriteStderr
Guido van Rossum [Fri, 4 Dec 1998 18:51:01 +0000 (18:51 +0000)]
One more fprintf bites the dist -- use PySys_WriteStderr

26 years agoNeed to add default decl of DL_IMPORT, for mymalloc.h
Guido van Rossum [Fri, 4 Dec 1998 18:50:20 +0000 (18:50 +0000)]
Need to add default decl of DL_IMPORT, for mymalloc.h

26 years agoAdd DL_EXPORT() to all modules that could possibly be used
Guido van Rossum [Fri, 4 Dec 1998 18:50:17 +0000 (18:50 +0000)]
Add DL_EXPORT() to all modules that could possibly be used
on BeOS or Windows.

26 years agoFix two small bugs; add DL_EXPORT() to initcPickle decl.
Guido van Rossum [Fri, 4 Dec 1998 18:48:44 +0000 (18:48 +0000)]
Fix two small bugs; add DL_EXPORT() to initcPickle decl.

26 years agoAdd DL_IMPORT(returntype) for all officially exported functions.
Guido van Rossum [Fri, 4 Dec 1998 18:48:25 +0000 (18:48 +0000)]
Add DL_IMPORT(returntype) for all officially exported functions.

26 years agoTurtle graphics
Guido van Rossum [Fri, 4 Dec 1998 16:42:46 +0000 (16:42 +0000)]
Turtle graphics

26 years agoBernard Herzog pointed out that rl_parse_and_bind modifies its
Guido van Rossum [Fri, 4 Dec 1998 15:34:39 +0000 (15:34 +0000)]
Bernard Herzog pointed out that rl_parse_and_bind modifies its
argument string (bad function!), so we make a temporary copy.

26 years agoAdd explicit example on how to import a submodule of a package using
Guido van Rossum [Fri, 4 Dec 1998 15:32:17 +0000 (15:32 +0000)]
Add explicit example on how to import a submodule of a package using
__import__ and getattr().

26 years agoAdded Helpwin -- help in a text widget
Barry Warsaw [Thu, 3 Dec 1998 19:50:24 +0000 (19:50 +0000)]
Added Helpwin -- help in a text widget

26 years agoUntabification and other cruft
Barry Warsaw [Thu, 3 Dec 1998 19:49:45 +0000 (19:49 +0000)]
Untabification and other cruft

26 years agodocstring(): Function for returning __doc__ % globals()
Barry Warsaw [Thu, 3 Dec 1998 19:49:13 +0000 (19:49 +0000)]
docstring(): Function for returning __doc__ % globals()

26 years agoaudiopy: slightly revamped UI... includes a menubar, no quit button,
Barry Warsaw [Thu, 3 Dec 1998 19:32:38 +0000 (19:32 +0000)]
audiopy: slightly revamped UI... includes a menubar, no quit button,
and added a `Help' menu item that puts the README (or docstring if
that can't be found) in a scrolling text widget.

README: fixed a few nits

26 years agoNew API version (enough has changed!).
Guido van Rossum [Thu, 3 Dec 1998 18:18:12 +0000 (18:18 +0000)]
New API version (enough has changed!).

26 years agoInitial version of the README file
Barry Warsaw [Thu, 3 Dec 1998 16:27:38 +0000 (16:27 +0000)]
Initial version of the README file

26 years agoGeneral comments on what's here and how to try it out. Note
Fred Drake [Wed, 2 Dec 1998 17:21:35 +0000 (17:21 +0000)]
General comments on what's here and how to try it out.  Note
dependence on the XML package.

26 years agoMoved NotImplementedError into alphabetical order, and reword
Barry Warsaw [Tue, 1 Dec 1998 19:48:04 +0000 (19:48 +0000)]
Moved NotImplementedError into alphabetical order, and reword
description.

26 years agoAdded documentation for NotImplementedError. Fred (I'm sure) will
Barry Warsaw [Tue, 1 Dec 1998 19:19:21 +0000 (19:19 +0000)]
Added documentation for NotImplementedError.  Fred (I'm sure) will
sanitize for your protection :-)

26 years agoSupport conversions to both SGML and XML; SGML is the "default".
Fred Drake [Tue, 1 Dec 1998 19:05:56 +0000 (19:05 +0000)]
Support conversions to both SGML and XML; SGML is the "default".

Add dependency on esistools.py for the ESIS intermediate files.

26 years agoUse esistools.
Fred Drake [Tue, 1 Dec 1998 19:04:12 +0000 (19:04 +0000)]
Use esistools.
Lots of changes to the conversion table.

26 years agoUse esistools.
Fred Drake [Tue, 1 Dec 1998 19:03:01 +0000 (19:03 +0000)]
Use esistools.
Generate ESIS data instead of XML.
Misc. changes to some transforms.

26 years agoUse esistools, getopt.
Fred Drake [Tue, 1 Dec 1998 19:01:53 +0000 (19:01 +0000)]
Use esistools, getopt.

26 years agoUtility functions and misc. classes used in handling ESIS data.
Fred Drake [Tue, 1 Dec 1998 19:00:58 +0000 (19:00 +0000)]
Utility functions and misc. classes used in handling ESIS data.

26 years agoIgnore the byproducts of SGML/XML conversions for now.
Fred Drake [Tue, 1 Dec 1998 18:58:28 +0000 (18:58 +0000)]
Ignore the byproducts of SGML/XML conversions for now.

26 years agoAdded new builtin standard exception: NotImplementedError (its C
Barry Warsaw [Tue, 1 Dec 1998 18:52:06 +0000 (18:52 +0000)]
Added new builtin standard exception: NotImplementedError (its C
counterpart is PyExc_NotImplementedError).

26 years agoNits to support conversions.
Fred Drake [Tue, 1 Dec 1998 18:37:59 +0000 (18:37 +0000)]
Nits to support conversions.

26 years agoAdded NotImplementedError, subclassed from RuntimeError
Barry Warsaw [Tue, 1 Dec 1998 18:36:30 +0000 (18:36 +0000)]
Added NotImplementedError, subclassed from RuntimeError

26 years agoAdded PyExc_NotImplementedError
Barry Warsaw [Tue, 1 Dec 1998 18:34:01 +0000 (18:34 +0000)]
Added PyExc_NotImplementedError