]> granicus.if.org Git - python/log
python
27 years agoMoved assert.h to ../Parser directory
Guido van Rossum [Tue, 19 Aug 1997 12:07:22 +0000 (12:07 +0000)]
Moved assert.h to ../Parser directory

27 years agoAlas, the thread support for Tk didn't work. Withdraw it, until I
Guido van Rossum [Tue, 19 Aug 1997 01:00:50 +0000 (01:00 +0000)]
Alas, the thread support for Tk didn't work.  Withdraw it, until I
figure out how to do this right.

27 years agoMade lookdict nearly twice as fast, resulting in a 5% overall
Guido van Rossum [Mon, 18 Aug 1997 21:52:47 +0000 (21:52 +0000)]
Made lookdict nearly twice as fast, resulting in a 5% overall
improvement of pystone.  Vladimir Marangozov.

27 years agoI'm tired -- checking in more news items. This isn't complete; I'm
Guido van Rossum [Mon, 18 Aug 1997 21:17:32 +0000 (21:17 +0000)]
I'm tired -- checking in more news items.  This isn't complete; I'm
about halfways.

27 years agoRemove remark on python15.lib being in the Debug subdir only.
Guido van Rossum [Mon, 18 Aug 1997 20:58:06 +0000 (20:58 +0000)]
Remove remark on python15.lib being in the Debug subdir only.

27 years agoChanged the way python15.lib is included in the other projects.
Guido van Rossum [Mon, 18 Aug 1997 20:57:13 +0000 (20:57 +0000)]
Changed the way python15.lib is included in the other projects.
Per Mark Hammond's suggestion, add it to the extra libs in Settings
instead of to the project's source files.

27 years agoUse correct keyword parameter when calling copy with answer option!
Guido van Rossum [Mon, 18 Aug 1997 20:56:10 +0000 (20:56 +0000)]
Use correct keyword parameter when calling copy with answer option!

27 years agoChange default verbosity so that there are only three levels left: -q,
Guido van Rossum [Mon, 18 Aug 1997 20:08:24 +0000 (20:08 +0000)]
Change default verbosity so that there are only three levels left: -q,
default and -v.  In default mode, the name of each test is printed.
-v is the same as the old -vv.  -q is more quiet than the old default
mode; that's fine I think.

27 years agoRemoved ancient FAQ from distribution
Guido van Rossum [Mon, 18 Aug 1997 19:55:01 +0000 (19:55 +0000)]
Removed ancient FAQ from distribution

27 years agoMoved inclusion of PURIFY in LINKCC to configure
Guido van Rossum [Mon, 18 Aug 1997 16:00:04 +0000 (16:00 +0000)]
Moved inclusion of PURIFY in LINKCC to configure

27 years agoNo longer used.
Guido van Rossum [Mon, 18 Aug 1997 15:46:16 +0000 (15:46 +0000)]
No longer used.

27 years agoTweaks to cope with strftime returning 0 without error for %Z
Guido van Rossum [Mon, 18 Aug 1997 15:37:38 +0000 (15:37 +0000)]
Tweaks to cope with strftime returning 0 without error for %Z

27 years agoForgot to check in the fixed output for print
Guido van Rossum [Mon, 18 Aug 1997 15:36:05 +0000 (15:36 +0000)]
Forgot to check in the fixed output for print

27 years agoCasts by Jack to shut up the Mac compiler.
Guido van Rossum [Mon, 18 Aug 1997 15:31:24 +0000 (15:31 +0000)]
Casts by Jack to shut up the Mac compiler.

27 years agoDeleteTimerHandler was accidentally #ifdef'ed out for macintosh with
Guido van Rossum [Mon, 18 Aug 1997 15:28:52 +0000 (15:28 +0000)]
DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with
Tk 8.0; this was a mistake.

27 years agoMisc Mac mods by Jack. Added libmacic.tex, and these patches:
Guido van Rossum [Mon, 18 Aug 1997 15:14:26 +0000 (15:14 +0000)]
Misc Mac mods by Jack.  Added libmacic.tex, and these patches:

libmacfs.tex Document NewAliasMinimalFromFullPath
libmacos.tex Document SetEventHandler and SchedParams
libmacui.tex Document asynchronous event handling
libmailbox.tex Removed mime-turds that somehow got in here

27 years agoAdd missing comma to make a tuple of (tagOrId).
Guido van Rossum [Mon, 18 Aug 1997 14:44:04 +0000 (14:44 +0000)]
Add missing comma to make a tuple of (tagOrId).

27 years agoWhen making all, don't make sharedmods. That's now called separately
Guido van Rossum [Mon, 18 Aug 1997 14:23:13 +0000 (14:23 +0000)]
When making all, don't make sharedmods.  That's now called separately
from the toplevel Makefile.  (For AIX, but doesn't hurt elsewhere.)

27 years agoChange the order in which things are built -- build the shared modules
Guido van Rossum [Mon, 18 Aug 1997 14:22:24 +0000 (14:22 +0000)]
Change the order in which things are built -- build the shared modules
after the main interpreter.  Needed for AIX.

27 years agoFix LINKCC for AIX
Guido van Rossum [Mon, 18 Aug 1997 14:12:12 +0000 (14:12 +0000)]
Fix LINKCC for AIX

27 years agoRecognize https:// as URL as well.
Guido van Rossum [Mon, 18 Aug 1997 13:59:41 +0000 (13:59 +0000)]
Recognize https:// as URL as well.

27 years agoOops. Of course, print b should also be print `b`. :-(
Guido van Rossum [Mon, 18 Aug 1997 13:42:28 +0000 (13:42 +0000)]
Oops.  Of course, print b should also be print `b`. :-(

27 years agoUse a trick to make the test for GMP v2 to work when GMP v1 defines
Guido van Rossum [Sun, 17 Aug 1997 19:08:33 +0000 (19:08 +0000)]
Use a trick to make the test for GMP v2 to work when GMP v1 defines
__GNU_MP__ as empty: #if __GNU_MP__ + 0 == 2
(Untested.)

27 years agoConsistently change Python-C API to Python/C API; added lots of new
Guido van Rossum [Sun, 17 Aug 1997 18:02:23 +0000 (18:02 +0000)]
Consistently change Python-C API to Python/C API; added lots of new
introductory text for reference counts and error handling, with good
examples.

27 years agoPyTuple_SetItem should require that the tuple's refcnt is one!
Guido van Rossum [Sun, 17 Aug 1997 16:25:45 +0000 (16:25 +0000)]
PyTuple_SetItem should require that the tuple's refcnt is one!

27 years agoDifferent strategy regarding whether to declare getrusage() and
Guido van Rossum [Sun, 17 Aug 1997 16:24:30 +0000 (16:24 +0000)]
Different strategy regarding whether to declare getrusage() and
getpagesize() -- #ifdef doesn't work, Linux has conflicting decls in
its headers.  Choice: only declare the return type, not the argument
prototype, and not on Linux.

27 years agoset sharedlib extensions properly for NeXT (Ted Horst)
Guido van Rossum [Sat, 16 Aug 1997 14:38:09 +0000 (14:38 +0000)]
set sharedlib extensions properly for NeXT (Ted Horst)

27 years agothe usual
Guido van Rossum [Sat, 16 Aug 1997 14:35:52 +0000 (14:35 +0000)]
the usual

27 years agotypo in next config
Guido van Rossum [Sat, 16 Aug 1997 14:35:26 +0000 (14:35 +0000)]
typo in next config

27 years agoThis commit was manufactured by cvs2svn to create tag 'r15a3'. v1.5a3
cvs2svn [Fri, 15 Aug 1997 20:18:44 +0000 (20:18 +0000)]
This commit was manufactured by cvs2svn to create tag 'r15a3'.

27 years agoAnother typo (importand).
Guido van Rossum [Fri, 15 Aug 1997 20:18:44 +0000 (20:18 +0000)]
Another typo (importand).

27 years agoFinal touch...
Guido van Rossum [Fri, 15 Aug 1997 20:09:56 +0000 (20:09 +0000)]
Final touch...

27 years agoTweaked all l2h targets to remove the target directory before renaming
Guido van Rossum [Fri, 15 Aug 1997 19:12:08 +0000 (19:12 +0000)]
Tweaked all l2h targets to remove the target directory before renaming
the intermediate target directory.

27 years agoFixes to make it pass latex without complaints.
Guido van Rossum [Fri, 15 Aug 1997 18:57:32 +0000 (18:57 +0000)]
Fixes to make it pass latex without complaints.

27 years agoType ("thgis").
Guido van Rossum [Fri, 15 Aug 1997 18:51:38 +0000 (18:51 +0000)]
Type ("thgis").

27 years agoNew, more complete list of what's new, pointing to Misc/NEWS for the
Guido van Rossum [Fri, 15 Aug 1997 18:30:14 +0000 (18:30 +0000)]
New, more complete list of what's new, pointing to Misc/NEWS for the
whole list.  Also changed all references to the FAQ to point to the
FAQ wizard.

27 years agoUse imp.find_module() as the most certain way to find the test data.
Guido van Rossum [Fri, 15 Aug 1997 16:23:32 +0000 (16:23 +0000)]
Use imp.find_module() as the most certain way to find the test data.

27 years agogenerated by regrtest.py -g
Jeremy Hylton [Fri, 15 Aug 1997 16:00:02 +0000 (16:00 +0000)]
generated by regrtest.py -g

27 years agotest the zlib module
Jeremy Hylton [Fri, 15 Aug 1997 15:59:43 +0000 (15:59 +0000)]
test the zlib module
only produce output if somethign goes wrong

27 years agoLast minute changes for \B. AMK.
Guido van Rossum [Fri, 15 Aug 1997 15:45:25 +0000 (15:45 +0000)]
Last minute changes for \B.  AMK.

27 years agoAdded tests for \b, \B (AMK).
Guido van Rossum [Fri, 15 Aug 1997 15:44:58 +0000 (15:44 +0000)]
Added tests for \b, \B (AMK).

27 years agoLast minut changes for \B, \S (?). AMK.
Guido van Rossum [Fri, 15 Aug 1997 15:44:23 +0000 (15:44 +0000)]
Last minut changes for \B, \S (?).  AMK.

27 years agoRegenerated
Jack Jansen [Fri, 15 Aug 1997 14:38:59 +0000 (14:38 +0000)]
Regenerated

27 years agoAdded support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason
Jack Jansen [Fri, 15 Aug 1997 14:38:05 +0000 (14:38 +0000)]
Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason
for blacklisting them.

27 years agoAdded #include <string.h> for memcpy()
Jack Jansen [Fri, 15 Aug 1997 14:36:45 +0000 (14:36 +0000)]
Added #include <string.h> for memcpy()

27 years agoAdded support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: no
Jack Jansen [Fri, 15 Aug 1997 14:35:54 +0000 (14:35 +0000)]
Added support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: no
reason they were blacklisted, we can handle them as generic Handles.

27 years agoAdded GetAuxiliaryControlRecord and SetControlColor, there was no good
Jack Jansen [Fri, 15 Aug 1997 14:32:18 +0000 (14:32 +0000)]
Added GetAuxiliaryControlRecord and SetControlColor, there was no good
reason they were excluded.

27 years agoMade AEDesc_{New,Convert} global
Jack Jansen [Fri, 15 Aug 1997 14:31:13 +0000 (14:31 +0000)]
Made AEDesc_{New,Convert} global

27 years agoAnother checkpoint -- reorganized, in sections.
Guido van Rossum [Fri, 15 Aug 1997 04:39:58 +0000 (04:39 +0000)]
Another checkpoint -- reorganized, in sections.

27 years agothe usual
Guido van Rossum [Fri, 15 Aug 1997 02:52:46 +0000 (02:52 +0000)]
the usual

27 years agoDate
Guido van Rossum [Fri, 15 Aug 1997 02:52:35 +0000 (02:52 +0000)]
Date

27 years ago.
Guido van Rossum [Fri, 15 Aug 1997 02:52:20 +0000 (02:52 +0000)]
.

27 years agoKeep gcc -Wall happy
Guido van Rossum [Fri, 15 Aug 1997 02:52:08 +0000 (02:52 +0000)]
Keep gcc -Wall happy

27 years agoCheckpoint checkin of list of changes. Much more to follow, but it's
Guido van Rossum [Fri, 15 Aug 1997 02:50:47 +0000 (02:50 +0000)]
Checkpoint checkin of list of changes.  Much more to follow, but it's
late...

27 years agoThe usual.
Guido van Rossum [Fri, 15 Aug 1997 00:45:26 +0000 (00:45 +0000)]
The usual.

27 years agoAdded std copyright notice.
Guido van Rossum [Fri, 15 Aug 1997 00:04:24 +0000 (00:04 +0000)]
Added std copyright notice.

27 years agoOops, there was a bug in the output formatting - the last printed
Guido van Rossum [Thu, 14 Aug 1997 23:25:20 +0000 (23:25 +0000)]
Oops, there was a bug in the output formatting - the last printed
values would overwrite the next value.

27 years agoAdded AMK's first cut at docs for re.py
Guido van Rossum [Thu, 14 Aug 1997 23:12:18 +0000 (23:12 +0000)]
Added AMK's first cut at docs for re.py

27 years agoDevStudio (CV++ 5.0) Project files.
Guido van Rossum [Thu, 14 Aug 1997 23:02:29 +0000 (23:02 +0000)]
DevStudio (CV++ 5.0) Project files.

27 years agoUpdated for new situation; added VC++ 5.0 info and new path strategies.
Guido van Rossum [Thu, 14 Aug 1997 22:57:33 +0000 (22:57 +0000)]
Updated for new situation; added VC++ 5.0 info and new path strategies.

27 years agoMoved some non-standard format characters out of the standard list.
Guido van Rossum [Thu, 14 Aug 1997 22:23:42 +0000 (22:23 +0000)]
Moved some non-standard format characters out of the standard list.
Also moved %c and %Z out of there, even though they are standard,
because these are locale dependent (and e.g. on Windows and Mac they
return different strings).  Finally, sorted the tables slightly
different, to match my standard docs better (%a before %A).

27 years agoAdded logmerge.py
Guido van Rossum [Thu, 14 Aug 1997 22:04:26 +0000 (22:04 +0000)]
Added logmerge.py

27 years agoConsolidate a bunch of CVS or RCS logs read from stdin.
Guido van Rossum [Thu, 14 Aug 1997 22:04:00 +0000 (22:04 +0000)]
Consolidate a bunch of CVS or RCS logs read from stdin.

27 years agoOK, reop is safe again.
Guido van Rossum [Thu, 14 Aug 1997 21:23:07 +0000 (21:23 +0000)]
OK, reop is safe again.

27 years agoFixed refcount bug (thank you, Purify and AMK).
Guido van Rossum [Thu, 14 Aug 1997 21:19:13 +0000 (21:19 +0000)]
Fixed refcount bug (thank you, Purify and AMK).

27 years agoSeveral bug fixes.
Jeremy Hylton [Thu, 14 Aug 1997 21:06:42 +0000 (21:06 +0000)]
Several bug fixes.
 -- initialize length to DEFAULTALLOC and not 0
 -- resize string before returning (to remove '\000' padding)

Also converted some compression routines to use PyString instead of
buffer.

27 years agoAdded more stuff on initialization (still rudimentary)
Guido van Rossum [Thu, 14 Aug 1997 20:35:38 +0000 (20:35 +0000)]
Added more stuff on initialization (still rudimentary)

27 years agoAdded new intro sections (incomplete); fixed various typos
Guido van Rossum [Thu, 14 Aug 1997 20:34:33 +0000 (20:34 +0000)]
Added new intro sections (incomplete); fixed various typos

27 years agoNew version (changes are so minor that I don't bother to explain them).
Guido van Rossum [Thu, 14 Aug 1997 20:20:42 +0000 (20:20 +0000)]
New version (changes are so minor that I don't bother to explain them).

27 years agoOf course, this file should be empty except for an informative comment.
Guido van Rossum [Thu, 14 Aug 1997 20:19:27 +0000 (20:19 +0000)]
Of course, this file should be empty except for an informative comment.

27 years agoAdd a separate SRC directory and insert it in front of the path.
Guido van Rossum [Thu, 14 Aug 1997 20:18:18 +0000 (20:18 +0000)]
Add a separate SRC directory and insert it in front of the path.

27 years agoAdd missing semicolon to '&gt;'.
Guido van Rossum [Thu, 14 Aug 1997 20:17:20 +0000 (20:17 +0000)]
Add missing semicolon to '&gt;'.

27 years agoAdded cvsfiles.py and treesync.py
Guido van Rossum [Thu, 14 Aug 1997 20:16:32 +0000 (20:16 +0000)]
Added cvsfiles.py and treesync.py

27 years agoSource tree synchronization tool (for Windowes, mostly)
Guido van Rossum [Thu, 14 Aug 1997 20:15:20 +0000 (20:15 +0000)]
Source tree synchronization tool (for Windowes, mostly)

27 years agoPrint a list of files under CVS.
Guido van Rossum [Thu, 14 Aug 1997 20:14:54 +0000 (20:14 +0000)]
Print a list of files under CVS.

27 years agosupport C++ comments
Guido van Rossum [Thu, 14 Aug 1997 20:14:29 +0000 (20:14 +0000)]
support C++ comments

27 years agoset LOOPS to 10000
Guido van Rossum [Thu, 14 Aug 1997 20:14:12 +0000 (20:14 +0000)]
set LOOPS to 10000

27 years agoAdd XXX warning about fishy line
Guido van Rossum [Thu, 14 Aug 1997 20:13:46 +0000 (20:13 +0000)]
Add XXX warning about fishy line

27 years agoUse _beginthread() and _endthread() in favor of CreateThread() and
Guido van Rossum [Thu, 14 Aug 1997 20:12:58 +0000 (20:12 +0000)]
Use _beginthread() and _endthread() in favor of CreateThread() and
ExitThread().  As discussed in c.l.p, this takes care of
initialization and finalization of thread-local storage allocated by
the C runtime system.  Not sure whether non-MS compilers grok this
though (but who cares :-).

27 years agoAdded Jim Fulton's PyImport_Import(), which calls whatever
Guido van Rossum [Thu, 14 Aug 1997 20:11:26 +0000 (20:11 +0000)]
Added Jim Fulton's PyImport_Import(), which calls whatever
__import__() hook is currently installed.

27 years agoAdded a bunch of XXX comments about things I'd like to see changed...
Guido van Rossum [Thu, 14 Aug 1997 19:57:39 +0000 (19:57 +0000)]
Added a bunch of XXX comments about things I'd like to see changed...

27 years agoMerge Mac and Windows mods (which mostly affect the same problem -- no
Guido van Rossum [Thu, 14 Aug 1997 19:57:07 +0000 (19:57 +0000)]
Merge Mac and Windows mods (which mostly affect the same problem -- no
usable createfilehandler).  Define HAVE_CREATEFILEHANDLER to test
later.  Also other Mac specific patches by Jack.

27 years agoPrint `a` so encrypted text is shown in ascii, not binary.
Guido van Rossum [Thu, 14 Aug 1997 19:55:00 +0000 (19:55 +0000)]
Print `a` so encrypted text is shown in ascii, not binary.

27 years agoAdded prototype for PyImport_Import().
Guido van Rossum [Thu, 14 Aug 1997 19:52:09 +0000 (19:52 +0000)]
Added prototype for PyImport_Import().

27 years agoUpdated platform specific notes (it is now more common to have this)
Guido van Rossum [Thu, 14 Aug 1997 19:51:26 +0000 (19:51 +0000)]
Updated platform specific notes (it is now more common to have this)
added some caveats.

27 years agoAdded buffer_info() docs.
Guido van Rossum [Thu, 14 Aug 1997 19:50:37 +0000 (19:50 +0000)]
Added buffer_info() docs.

27 years agoMinor typo only.
Guido van Rossum [Thu, 14 Aug 1997 19:50:18 +0000 (19:50 +0000)]
Minor typo only.

27 years agoAdd try-finally around main loop.
Guido van Rossum [Thu, 14 Aug 1997 19:49:27 +0000 (19:49 +0000)]
Add try-finally around main loop.

27 years agoAdded (commented-out) defs for use with the build tree instead of the
Guido van Rossum [Thu, 14 Aug 1997 19:48:42 +0000 (19:48 +0000)]
Added (commented-out) defs for use with the build tree instead of the
installed version.

27 years agoAdded QNX remarks.
Guido van Rossum [Thu, 14 Aug 1997 19:45:30 +0000 (19:45 +0000)]
Added QNX remarks.

27 years agoThe usual
Guido van Rossum [Thu, 14 Aug 1997 19:45:07 +0000 (19:45 +0000)]
The usual

27 years agoDon't call sys.exit() all over the place -- simply return the exit
Guido van Rossum [Thu, 14 Aug 1997 19:40:34 +0000 (19:40 +0000)]
Don't call sys.exit() all over the place -- simply return the exit
status from main() and call sys.exit(main()) in the startup stub at
the end of the file.

27 years agoComment out use of reop.expand_escape and reop._expand until their
Guido van Rossum [Thu, 14 Aug 1997 19:33:06 +0000 (19:33 +0000)]
Comment out use of reop.expand_escape and reop._expand until their
bugginess has been fixed.

27 years agoUse _Py_re_match/search instead of re_match/search; these may become
Guido van Rossum [Thu, 14 Aug 1997 14:35:12 +0000 (14:35 +0000)]
Use _Py_re_match/search instead of re_match/search; these may become
different in a future version.

27 years agoFred Lundh's latest versions.
Guido van Rossum [Thu, 14 Aug 1997 14:17:28 +0000 (14:17 +0000)]
Fred Lundh's latest versions.

27 years agoAdd dummies for create/delete filehandles, just so that vanilla Grail
Guido van Rossum [Thu, 14 Aug 1997 14:15:54 +0000 (14:15 +0000)]
Add dummies for create/delete filehandles, just so that vanilla Grail
0.3 won't break on Windows.

27 years agoDocumented mime_decode_header() and mime_encode_header().
Guido van Rossum [Thu, 14 Aug 1997 14:13:01 +0000 (14:13 +0000)]
Documented mime_decode_header() and mime_encode_header().

27 years agoFixed (and documented, see Doc/libmimify.tex) mime_decode_header() and
Guido van Rossum [Thu, 14 Aug 1997 14:10:37 +0000 (14:10 +0000)]
Fixed (and documented, see Doc/libmimify.tex) mime_decode_header() and
mime_encode_header().

27 years agoAdded Windows NT instructions.
Guido van Rossum [Thu, 14 Aug 1997 02:12:04 +0000 (02:12 +0000)]
Added Windows NT instructions.

27 years agoChanges for building under windows.
Guido van Rossum [Thu, 14 Aug 1997 01:45:33 +0000 (01:45 +0000)]
Changes for building under windows.