]> granicus.if.org Git - python/log
python
28 years agoChange the ``calcsize*3'' test to be portable to 64-bit machines.
Guido van Rossum [Fri, 3 Jan 1997 19:00:37 +0000 (19:00 +0000)]
Change the ``calcsize*3'' test to be portable to 64-bit machines.

28 years agoReindented.
Roger E. Masse [Fri, 3 Jan 1997 18:51:01 +0000 (18:51 +0000)]
Reindented.

28 years agoCheck of return values and proper error handling.
Barry Warsaw [Fri, 3 Jan 1997 17:18:10 +0000 (17:18 +0000)]
Check of return values and proper error handling.

28 years agoAdded PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong().
Guido van Rossum [Fri, 3 Jan 1997 17:14:46 +0000 (17:14 +0000)]
Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong().

28 years agoOutput for signal module test
Barry Warsaw [Fri, 3 Jan 1997 16:01:20 +0000 (16:01 +0000)]
Output for signal module test

28 years agoAdd $(srcdir) in front of the test program's name (else it won't work
Guido van Rossum [Fri, 3 Jan 1997 15:54:36 +0000 (15:54 +0000)]
Add $(srcdir) in front of the test program's name (else it won't work
when $(srcdir) isn't '.', i.e. when using VPATH).

28 years agoFill pad bytes with zeros (fixing a bug dating from the very first version!).
Guido van Rossum [Fri, 3 Jan 1997 15:40:33 +0000 (15:40 +0000)]
Fill pad bytes with zeros (fixing a bug dating from the very first version!).

28 years agoDescribe standard float/double support.
Guido van Rossum [Fri, 3 Jan 1997 04:20:09 +0000 (04:20 +0000)]
Describe standard float/double support.
Rewrite example to be an interactive session

28 years agoScratch the ears of gcc -Wall.
Barry Warsaw [Fri, 3 Jan 1997 00:26:28 +0000 (00:26 +0000)]
Scratch the ears of gcc -Wall.

28 years agoAdded declaration for PyErr_SetInterrupt.
Barry Warsaw [Fri, 3 Jan 1997 00:15:03 +0000 (00:15 +0000)]
Added declaration for PyErr_SetInterrupt.

28 years agoSeveral changes:
Barry Warsaw [Fri, 3 Jan 1997 00:14:25 +0000 (00:14 +0000)]
Several changes:

- Conform to standard Python C coding styles.

- All static symbols were renamed and shorted.

- Eyeballed all return values and memory references.

- Fixed a bug in signal.pause() so that exceptions raised in signal
  handlers are now properly caught after pause() returns.

- Removed SIGCPU and SIGFSZ.  We surmise that these were typos for the
  previously missing SIGXCPU and SIGXFSZ.

28 years agoAdded f/d tests for specific byte orders.
Guido van Rossum [Fri, 3 Jan 1997 00:09:46 +0000 (00:09 +0000)]
Added f/d tests for specific byte orders.

28 years agoOk, ok, I've fixed gradual underflow on packing too.
Guido van Rossum [Thu, 2 Jan 1997 23:23:20 +0000 (23:23 +0000)]
Ok, ok, I've fixed gradual underflow on packing too.

Still don't know what to do with Inf/NaN, so I raise an exception on
pack(), and something random decided by ldexp() will happen on
unpack().

28 years agoUse the new struct module's ability to pack and unpack standardized
Guido van Rossum [Thu, 2 Jan 1997 22:52:15 +0000 (22:52 +0000)]
Use the new struct module's ability to pack and unpack standardized
data formats.  The _xdr module is no longer used, since struct
supports the required IEEE floats and doubles.

(I have one doubt about not using _xdr.  The struct module doesn't
handle Inf, NaN and gradual underflow correctly.  If the _xdr module
does these things better, it may still have a (small) competitive
advantage.  On the other hand, since not all platforms support IEEE
floating point, it's not clear that it would be a good idea to ever
transfer Inf or NaNs.  Gradual underflow can be fixed in the struct
module.

28 years agoOops -- unpack float/double didn't do the right thing if e==0.
Guido van Rossum [Thu, 2 Jan 1997 22:31:07 +0000 (22:31 +0000)]
Oops -- unpack float/double didn't do the right thing if e==0.

28 years agoSupport float and double in non-native formats.
Guido van Rossum [Thu, 2 Jan 1997 22:21:36 +0000 (22:21 +0000)]
Support float and double in non-native formats.
These use the ANSI/IEEE standard, which is also used by XDR;
so the _xdr module may become obsolete.

28 years agorotorobj_setkey(): A single string argument is now required (i.e. no
Barry Warsaw [Thu, 2 Jan 1997 20:36:36 +0000 (20:36 +0000)]
rotorobj_setkey(): A single string argument is now required (i.e. no
long optional with nearly-no-op missing).

28 years ago<rotorobj>.setkey() now requires exactly one argument
Barry Warsaw [Thu, 2 Jan 1997 20:02:44 +0000 (20:02 +0000)]
<rotorobj>.setkey() now requires exactly one argument

28 years agoSwitched over to use the new testregr.py test harness.
Barry Warsaw [Thu, 2 Jan 1997 20:01:44 +0000 (20:01 +0000)]
Switched over to use the new testregr.py test harness.

28 years agosetkey method's argument is no longer optional (it used to be a no-op
Barry Warsaw [Thu, 2 Jan 1997 19:48:00 +0000 (19:48 +0000)]
setkey method's argument is no longer optional (it used to be a no-op
when missing).

28 years agoAdded characteristics of shttp, https, and snews.
Guido van Rossum [Thu, 2 Jan 1997 18:18:27 +0000 (18:18 +0000)]
Added characteristics of shttp, https, and snews.

28 years agoProperly parenthesize a long Boolean combination. Formerly, you could
Guido van Rossum [Thu, 2 Jan 1997 18:13:35 +0000 (18:13 +0000)]
Properly parenthesize a long Boolean combination.  Formerly, you could
pass invalid seed values.

28 years agoThe usual...
Guido van Rossum [Tue, 31 Dec 1996 22:35:16 +0000 (22:35 +0000)]
The usual...

28 years agoRewritten the readline test, hopefully it's okay now.
Guido van Rossum [Tue, 31 Dec 1996 22:34:17 +0000 (22:34 +0000)]
Rewritten the readline test, hopefully it's okay now.

28 years ago(libformatter.tex): Document the flush() method on the writer.
Fred Drake [Tue, 31 Dec 1996 20:51:42 +0000 (20:51 +0000)]
(libformatter.tex):  Document the flush() method on the writer.

28 years ago(formatter.py): Add a flush() method to the writer interface. This really
Fred Drake [Tue, 31 Dec 1996 20:50:51 +0000 (20:50 +0000)]
(formatter.py):  Add a flush() method to the writer interface.  This really
needs to be a standard part of the interface, so we'll have it in
for the next release.

28 years agoExercise the new feature set somewhat.
Guido van Rossum [Tue, 31 Dec 1996 17:25:47 +0000 (17:25 +0000)]
Exercise the new feature set somewhat.
Use TestFailed exception and verbose flag from test_support module.

28 years agoAdded better handling of unsigned longs -- a Python long returned by
Guido van Rossum [Tue, 31 Dec 1996 16:29:52 +0000 (16:29 +0000)]
Added better handling of unsigned longs -- a Python long returned by
unpack('L', ...) is now acceptable to pack('L', ...).

28 years agoRewrote _{read,write}_{short,long} to use the newly revamped struct
Guido van Rossum [Tue, 31 Dec 1996 05:57:34 +0000 (05:57 +0000)]
Rewrote _{read,write}_{short,long} to use the newly revamped struct
module.  (Small problem: struct.pack() won't deal with the Python long
ints returned by struct.unpack() for the 'L' format.  Worked around
that for now.)

28 years agoAdded libstat.tex
Guido van Rossum [Tue, 31 Dec 1996 02:24:54 +0000 (02:24 +0000)]
Added libstat.tex

28 years agoDocument the new extensions.
Guido van Rossum [Tue, 31 Dec 1996 02:22:14 +0000 (02:22 +0000)]
Document the new extensions.

28 years agoFix the first bugs... treatment of 0 count was wrong, and memchr()
Guido van Rossum [Tue, 31 Dec 1996 02:10:45 +0000 (02:10 +0000)]
Fix the first bugs...  treatment of 0 count was wrong, and memchr()
should be memset().

28 years agoPretty much rewritten to fulfull several long-standing wishes:
Guido van Rossum [Tue, 31 Dec 1996 01:41:25 +0000 (01:41 +0000)]
Pretty much rewritten to fulfull several long-standing wishes:

-- The whole implementation is now more table-driven.

-- Unsigned integers.  Format characters 'B', 'H', 'I' and 'L'
mean unsigned byte, short, int and long.  For 'I' and 'L', the return
value is a Python long integer if a Python plain integer can't
represent the required range (note: this is dependent on the size of
the relevant C types only, not of the sign of the actual value).

-- A new format character 's' packs/unpacks a string.  When given a
count prefix, this is the size of the string, not a repeat count like
for the other format characters; e.g. '10s' means a single 10-byte
string, while '10c' means 10 characters.  For packing, the string is
truncated or padded with null bytes as appropriate to make it fit.
For unpacking, the resulting string always has exactly the specified
number of bytes.  As a special case, '0s' means a single, empty
string (while '0c' means 0 characters).

-- Various byte order options.  The first character of the format
string determines the byte order, size and alignment, as follows:

First character Byte order size and alignment

'@' native native
'=' native standard
'<' little-endian standard
'>' big-endian standard
'!' network (= big-endian) standard

If the first character is not one of these, '@' is assumed.

Native byte order is big-endian or little-endian, depending on the
host system (e.g. Motorola and Sun are big-endian; Intel and DEC are
little-endian).

Native size and alignment are determined using the C compiler's sizeof
expression.  This is always combined with native byte order.

Standard size and alignment are as follows: no alignment is required
for any type (so you have to use pad bytes); short is 2 bytes; int and
long are 4 bytes.  In this mode, there is no support for float and
double.

Note the difference between '@' and '=': both use native byte order,
but the size and alignment of the latter is standardized.

The form '!' is available for those poor souls who can't remember
whether network byte order is big-endian or little-endian.

There is no way to indicate non-native byte order (i.e. force
byte-swapping); use the appropriate choice of '<' or '>'.

28 years agoA different winning animation.
Guido van Rossum [Mon, 30 Dec 1996 16:45:14 +0000 (16:45 +0000)]
A different winning animation.

28 years agoRename DEBUG macro to Py_DEBUG
Guido van Rossum [Mon, 30 Dec 1996 16:17:54 +0000 (16:17 +0000)]
Rename DEBUG macro to Py_DEBUG

28 years agoActually, *this* fixes the last bug.
Guido van Rossum [Mon, 30 Dec 1996 02:37:07 +0000 (02:37 +0000)]
Actually, *this* fixes the last bug.

28 years agoConsiderably restructured. This fixes the one remaining bug.
Guido van Rossum [Mon, 30 Dec 1996 02:20:29 +0000 (02:20 +0000)]
Considerably restructured.  This fixes the one remaining bug.

28 years agoSolitaire game, like the one that comes with Windows.
Guido van Rossum [Sun, 29 Dec 1996 20:15:32 +0000 (20:15 +0000)]
Solitaire game, like the one that comes with Windows.

28 years agoAdded support for RFC 850 style dates, as used by some HTTP servers
Guido van Rossum [Fri, 27 Dec 1996 15:42:35 +0000 (15:42 +0000)]
Added support for RFC 850 style dates, as used by some HTTP servers
(such as Netscape-Commerce and CERN).

An example of a RFC 850 date: 'Wednesday, 18-Dec-96 21:00:00 GMT'

From: Chris Lawrence <quango@themall.net>

28 years agoFix bogus implementation of Group.bind().
Guido van Rossum [Fri, 27 Dec 1996 15:40:31 +0000 (15:40 +0000)]
Fix bogus implementation of Group.bind().
Added unbind() to CanvasItem and Group classes.

28 years agoAdded config(ure) method to Image class.
Guido van Rossum [Fri, 27 Dec 1996 15:33:17 +0000 (15:33 +0000)]
Added config(ure) method to Image class.
(Fred Drake)

28 years agoChange the default values for IntVar and DoubleVar to numbers (they
Guido van Rossum [Fri, 27 Dec 1996 15:30:20 +0000 (15:30 +0000)]
Change the default values for IntVar and DoubleVar to numbers (they
were strings, accidentally).

28 years agoCrude but effective hack to clear the parser cache every so often.
Guido van Rossum [Fri, 27 Dec 1996 15:26:15 +0000 (15:26 +0000)]
Crude but effective hack to clear the parser cache every so often.
(Fred Drake.)

28 years agoRemoved all traces of accessobject.c.
Guido van Rossum [Wed, 25 Dec 1996 19:22:49 +0000 (19:22 +0000)]
Removed all traces of accessobject.c.

28 years agoRenamed.
Roger E. Masse [Tue, 24 Dec 1996 19:39:23 +0000 (19:39 +0000)]
Renamed.

However: "cgensupport.h" is still present... otherwise I get
maaaany type errors... not sure if this needs more attention.

28 years agoTest output for the gl C extension module.
Roger E. Masse [Tue, 24 Dec 1996 19:36:33 +0000 (19:36 +0000)]
Test output for the gl C extension module.

28 years agogl is a *huge* module. This is a very simple test that insures that
Roger E. Masse [Tue, 24 Dec 1996 19:36:07 +0000 (19:36 +0000)]
gl is a *huge* module.  This is a very simple test that insures that
all the modules attributes are present and creates a small criss-cross
window for 5 seconds (example from the documentation :-)  A more
comprehensive test would probably be useful... but maybe overkill.

28 years agoOutput files
Barry Warsaw [Mon, 23 Dec 1996 23:40:11 +0000 (23:40 +0000)]
Output files

test_rotor.py: New test of the rotor module.

test_*: converted to the new test harness.  GvR note!  test_signal.py
works interatively (i.e. when verbose=1) but does not work inside the
test harness.  It must be a timing issue, but I haven't figured it out
yet.

28 years agotest_rotor.py: New test of the rotor module.
Barry Warsaw [Mon, 23 Dec 1996 23:39:42 +0000 (23:39 +0000)]
test_rotor.py: New test of the rotor module.

test_*: converted to the new test harness.  GvR note!  test_signal.py
works interatively (i.e. when verbose=1) but does not work inside the
test harness.  It must be a timing issue, but I haven't figured it out
yet.

28 years agoReworked to check for memory problems (one potential found),
Barry Warsaw [Mon, 23 Dec 1996 23:36:24 +0000 (23:36 +0000)]
Reworked to check for memory problems (one potential found),
non-checked error return values, and where appropriate,
PyArg_ParseTuple() style argument parsing.

I also changed some function names and converted all malloc/free calls
to PyMem_NEW/PyMem_DEL.

Some stylistic changes and formatting standardization.

28 years agoFrom reading the source, it turns out that the setkey() method can
Barry Warsaw [Mon, 23 Dec 1996 23:34:17 +0000 (23:34 +0000)]
From reading the source, it turns out that the setkey() method can
take an optional string key, but if key is not given, the method does
nothing!  In the rewrite (see upcoming check-in), I left things this
way, but here I document that this is the case.

28 years ago- CWGUSI has moved
Jack Jansen [Mon, 23 Dec 1996 17:29:51 +0000 (17:29 +0000)]
- CWGUSI has moved
- Changed instructions for Tcl 7.6/Tk 4.2

28 years agoAdded a chapter on using OSAXen
Jack Jansen [Mon, 23 Dec 1996 17:28:53 +0000 (17:28 +0000)]
Added a chapter on using OSAXen

28 years agoAdded range of resource-ids for twit.
Jack Jansen [Mon, 23 Dec 1996 17:23:23 +0000 (17:23 +0000)]
Added range of resource-ids for twit.

28 years agoAdded Application.cleanup method which asks all windows to close
Jack Jansen [Mon, 23 Dec 1996 17:22:40 +0000 (17:22 +0000)]
Added Application.cleanup method which asks all windows to close
themselves and returns true if they did.

28 years agoAdded gdbm (if USE_GDBM defined)
Jack Jansen [Mon, 23 Dec 1996 17:21:20 +0000 (17:21 +0000)]
Added gdbm (if USE_GDBM defined)

28 years agoMoved resources around to forestall conflicts with debuggee
Jack Jansen [Mon, 23 Dec 1996 17:11:00 +0000 (17:11 +0000)]
Moved resources around to forestall conflicts with debuggee

28 years agoAdded gdbm
Jack Jansen [Mon, 23 Dec 1996 17:09:51 +0000 (17:09 +0000)]
Added gdbm

28 years agoAdded gdbm plugins, changed jpeg library to v6, various minor changes
Jack Jansen [Mon, 23 Dec 1996 17:00:31 +0000 (17:00 +0000)]
Added gdbm plugins, changed jpeg library to v6, various minor changes

28 years agoAdded gdbm plugins
Jack Jansen [Mon, 23 Dec 1996 16:56:19 +0000 (16:56 +0000)]
Added gdbm plugins

28 years agoIf sys.argv is empty ask for input file and output folder
Jack Jansen [Mon, 23 Dec 1996 16:54:51 +0000 (16:54 +0000)]
If sys.argv is empty ask for input file and output folder

28 years agoVery very small comment change.
Roger E. Masse [Fri, 20 Dec 1996 22:39:24 +0000 (22:39 +0000)]
Very very small comment change.

28 years agoMany scripts, but small changes. Update the way the scripts obtain the
Roger E. Masse [Fri, 20 Dec 1996 22:36:52 +0000 (22:36 +0000)]
Many scripts, but small changes.  Update the way the scripts obtain the
'verbose' flag ala GvR updated test harness architecture.

Old way:

verbose = 0
if __name__ == '__main__':
verbose = 1

New way:

from test_support import verbose

Some other small readablility and functionality updates.

28 years agoadded test of the regex module
Barry Warsaw [Fri, 20 Dec 1996 22:00:21 +0000 (22:00 +0000)]
added test of the regex module

[NOTE: testall.py and autotest.py might could go away soon, I've
 played with Guido's new regrtest.py script and it seems to work well.
 I'll wait until Guido gives the word to completely switch over -- and
 change the Makefile too!]

28 years agoRenamed.
Roger E. Masse [Fri, 20 Dec 1996 21:56:08 +0000 (21:56 +0000)]
Renamed.

28 years agoSeveral changes. Test program to follow.
Barry Warsaw [Fri, 20 Dec 1996 21:56:07 +0000 (21:56 +0000)]
Several changes.  Test program to follow.

- Where optional arguments were being used, converted to
  PyArg_ParseTuple() style instead of nested PyArg_Parse() style.

- Check for and handle many potential error conditions that were never
  being tested.

- internal reg_* functions renamed to regobj_* (makes it easier to
  figure out which are global regex functions and which are for regex
  objects).

- reg_group (now regobj_group) was quite extensively reworked.  it no
  longer recurses to do its job (by factoring core functionality into
  a separate function that knows about string and integer indexes).

- some minor formatting fixes.

- regex_set_syntax() now invalidates the cache.  Without this change
  (in the example below), the second search would produce different
  output depending on whether the first search were performed or not
  (since performing the first search would cache the compiled object
  with RE_SYNTAX_EMACS, causing the second test to unexpectedly fail).

  regex.search('(a+)|(b+)', 'cdb')
  prev = regex.set_syntax(RE_SYNTAX_AWK)
  regex.search('(a+)|(b+)', 'cdb')

28 years agoMore and better comments.
Roger E. Masse [Fri, 20 Dec 1996 21:52:29 +0000 (21:52 +0000)]
More and better comments.

28 years agoMinor semantic cleanup.
Roger E. Masse [Fri, 20 Dec 1996 21:47:58 +0000 (21:47 +0000)]
Minor semantic cleanup.

28 years agoOutput for test script for the SGI imgfile module.
Roger E. Masse [Fri, 20 Dec 1996 21:42:09 +0000 (21:42 +0000)]
Output for test script for the SGI imgfile module.

28 years agoTest script for the SGI imgfile module.
Roger E. Masse [Fri, 20 Dec 1996 21:41:50 +0000 (21:41 +0000)]
Test script for the SGI imgfile module.

28 years agoRenamed.
Roger E. Masse [Fri, 20 Dec 1996 20:50:39 +0000 (20:50 +0000)]
Renamed.

28 years ago8 bit greyscale test file needed for testing imageop and imgfile.
Roger E. Masse [Fri, 20 Dec 1996 20:50:10 +0000 (20:50 +0000)]
8 bit greyscale test file needed for testing imageop and imgfile.

28 years agoTest program for the SGI imageop module.
Roger E. Masse [Fri, 20 Dec 1996 20:49:06 +0000 (20:49 +0000)]
Test program for the SGI imageop module.

28 years agotest output for SGI imageop C module.
Roger E. Masse [Fri, 20 Dec 1996 20:47:17 +0000 (20:47 +0000)]
test output for SGI imageop C module.

28 years ago(python-cc-style): Added definitions for c-hanging-braces-alist which
Barry Warsaw [Fri, 20 Dec 1996 16:43:32 +0000 (16:43 +0000)]
(python-cc-style): Added definitions for c-hanging-braces-alist which
make the most sense for PyMethodDef structures.  [one small fix]

28 years ago(python-cc-style): Added definitions for c-hanging-braces-alist which
Barry Warsaw [Fri, 20 Dec 1996 16:42:04 +0000 (16:42 +0000)]
(python-cc-style): Added definitions for c-hanging-braces-alist which
make the most sense for PyMethodDef structures.

28 years agoTwo new files (to shut up regrtest).
Guido van Rossum [Fri, 20 Dec 1996 03:14:42 +0000 (03:14 +0000)]
Two new files (to shut up regrtest).

28 years agoAdded example DL for SGI IRIX.
Guido van Rossum [Fri, 20 Dec 1996 03:13:36 +0000 (03:13 +0000)]
Added example DL for SGI IRIX.

28 years agoAdded test for minmax.
Guido van Rossum [Fri, 20 Dec 1996 03:13:06 +0000 (03:13 +0000)]
Added test for minmax.

28 years agoNew regression test harness. See usage message / doc string.
Guido van Rossum [Fri, 20 Dec 1996 03:12:20 +0000 (03:12 +0000)]
New regression test harness.  See usage message / doc string.

28 years agoImport verbose flag from test_support instead of testing __name__.
Guido van Rossum [Fri, 20 Dec 1996 03:03:39 +0000 (03:03 +0000)]
Import verbose flag from test_support instead of testing __name__.

28 years agoSet test_support.verbose to 0, to signal tests only to generate
Guido van Rossum [Fri, 20 Dec 1996 03:03:01 +0000 (03:03 +0000)]
Set test_support.verbose to 0, to signal tests only to generate
portable output.

28 years agoAdd verbose flag for regression test to clear.
Guido van Rossum [Fri, 20 Dec 1996 02:58:22 +0000 (02:58 +0000)]
Add verbose flag for regression test to clear.

28 years agoDescribe open(2) exported constants
Barry Warsaw [Thu, 19 Dec 1996 23:50:34 +0000 (23:50 +0000)]
Describe open(2) exported constants

28 years ago1. Export open(2) flag constants for every defined constant
Barry Warsaw [Thu, 19 Dec 1996 23:50:02 +0000 (23:50 +0000)]
1. Export open(2) flag constants for every defined constant

2. Reworked error checking in initposix() and initnt().

28 years agoDocs for stat.py -- docs by Skip Montanaro.
Guido van Rossum [Thu, 19 Dec 1996 22:39:22 +0000 (22:39 +0000)]
Docs for stat.py -- docs by Skip Montanaro.

28 years agoposix.open(): third argument (mode) is optional.
Barry Warsaw [Thu, 19 Dec 1996 22:38:56 +0000 (22:38 +0000)]
posix.open(): third argument (mode) is optional.

28 years agoMinor formatting changes.
Barry Warsaw [Thu, 19 Dec 1996 22:22:32 +0000 (22:22 +0000)]
Minor formatting changes.

28 years agoMinor formatting changes.
Barry Warsaw [Thu, 19 Dec 1996 22:10:44 +0000 (22:10 +0000)]
Minor formatting changes.

28 years agoDocumented getprotobyname() interface.
Guido van Rossum [Thu, 19 Dec 1996 16:43:25 +0000 (16:43 +0000)]
Documented getprotobyname() interface.

28 years agoAdded the new getprotobyname() call to the module overview at the top.
Guido van Rossum [Thu, 19 Dec 1996 16:42:52 +0000 (16:42 +0000)]
Added the new getprotobyname() call to the module overview at the top.

28 years agoAdded getprotobyname() interface.
Guido van Rossum [Thu, 19 Dec 1996 16:35:04 +0000 (16:35 +0000)]
Added getprotobyname() interface.

28 years ago(libunix.tex): Change matching lib.tex: add line item for the resource
Fred Drake [Thu, 19 Dec 1996 12:20:54 +0000 (12:20 +0000)]
(libunix.tex):  Change matching lib.tex: add line item for the resource
module.

28 years agoRemoved references to getdoublearg and get2doublearg rename macros and
Roger E. Masse [Wed, 18 Dec 1996 21:59:01 +0000 (21:59 +0000)]
Removed references to getdoublearg and get2doublearg rename macros and
substituted the appropriate PyArg_Parse calls.  Retested.  All appears well.

28 years agoEradicated all references to getintarg and getstrarg and substituded the
Roger E. Masse [Wed, 18 Dec 1996 20:07:39 +0000 (20:07 +0000)]
Eradicated all references to getintarg and getstrarg and substituded the
proper functions as defined in rename2.h.  Thanks Barry!

28 years agoOpps, left out two defines needed for argument parsing.
Roger E. Masse [Wed, 18 Dec 1996 19:56:48 +0000 (19:56 +0000)]
Opps, left out two defines needed for argument parsing.

28 years agoTest of the operator module
Barry Warsaw [Wed, 18 Dec 1996 19:56:22 +0000 (19:56 +0000)]
Test of the operator module

28 years agoAdded pointer to framereader distribution.
Guido van Rossum [Wed, 18 Dec 1996 19:55:49 +0000 (19:55 +0000)]
Added pointer to framereader distribution.

28 years agoTabification changes only; the module was already newly named.
Barry Warsaw [Wed, 18 Dec 1996 19:50:00 +0000 (19:50 +0000)]
Tabification changes only; the module was already newly named.

28 years agoRenamed.
Roger E. Masse [Wed, 18 Dec 1996 19:37:32 +0000 (19:37 +0000)]
Renamed.