Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed support_print docs. | Jack Jansen | 1997-08-19 | 1 | -2/+0 |
| | |||||
* | Docs on new tcl/tk, new build tree layout | Jack Jansen | 1997-08-19 | 1 | -55/+26 |
| | |||||
* | Very sketchy preliminary docs on new applescripting functionality. | Jack Jansen | 1997-08-19 | 1 | -32/+53 |
| | |||||
* | Added reop | Jack Jansen | 1997-08-19 | 1 | -0/+2 |
| | |||||
* | MkPluginAliases now knows about fat PythonCore (and all resource files | Jack Jansen | 1997-08-19 | 8 | -163/+164 |
| | | | | got binhexed again) | ||||
* | PythonCore is now a fat shared library, the plugin modules aren't fat, | Jack Jansen | 1997-08-19 | 21 | -4829/+4847 |
| | | | | | | | | unfortunately, this turned out to be too difficult. Plugins.prj now builds all plugin modules, and all the interdependencies between the projects are correct. One exception: plugins don't attempt to build PythonCore (PythonFAT and PythonApplet do). | ||||
* | Moved assert.h to ../Parser directory | Guido van Rossum | 1997-08-19 | 1 | -49/+0 |
| | |||||
* | Alas, the thread support for Tk didn't work. Withdraw it, until I | Guido van Rossum | 1997-08-19 | 1 | -0/+4 |
| | | | | figure out how to do this right. | ||||
* | Made lookdict nearly twice as fast, resulting in a 5% overall | Guido van Rossum | 1997-08-18 | 1 | -11/+13 |
| | | | | improvement of pystone. Vladimir Marangozov. | ||||
* | I'm tired -- checking in more news items. This isn't complete; I'm | Guido van Rossum | 1997-08-18 | 1 | -106/+229 |
| | | | | about halfways. | ||||
* | Remove remark on python15.lib being in the Debug subdir only. | Guido van Rossum | 1997-08-18 | 1 | -4/+1 |
| | |||||
* | Changed the way python15.lib is included in the other projects. | Guido van Rossum | 1997-08-18 | 3 | -24/+6 |
| | | | | | Per Mark Hammond's suggestion, add it to the extra libs in Settings instead of to the project's source files. | ||||
* | Use correct keyword parameter when calling copy with answer option! | Guido van Rossum | 1997-08-18 | 1 | -2/+2 |
| | |||||
* | Change default verbosity so that there are only three levels left: -q, | Guido van Rossum | 1997-08-18 | 1 | -12/+15 |
| | | | | | | 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. | ||||
* | Removed ancient FAQ from distribution | Guido van Rossum | 1997-08-18 | 2 | -2273/+1 |
| | |||||
* | Moved inclusion of PURIFY in LINKCC to configure | Guido van Rossum | 1997-08-18 | 3 | -6/+6 |
| | |||||
* | No longer used. | Guido van Rossum | 1997-08-18 | 1 | -93/+0 |
| | |||||
* | Tweaks to cope with strftime returning 0 without error for %Z | Guido van Rossum | 1997-08-18 | 2 | -3/+6 |
| | |||||
* | Forgot to check in the fixed output for print | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | Casts by Jack to shut up the Mac compiler. | Guido van Rossum | 1997-08-18 | 4 | -32/+32 |
| | |||||
* | DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with | Guido van Rossum | 1997-08-18 | 1 | -3/+0 |
| | | | | Tk 8.0; this was a mistake. | ||||
* | Misc Mac mods by Jack. Added libmacic.tex, and these patches: | Guido van Rossum | 1997-08-18 | 13 | -97/+379 |
| | | | | | | | 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 | ||||
* | Add missing comma to make a tuple of (tagOrId). | Guido van Rossum | 1997-08-18 | 2 | -2/+2 |
| | |||||
* | When making all, don't make sharedmods. That's now called separately | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | | | | from the toplevel Makefile. (For AIX, but doesn't hurt elsewhere.) | ||||
* | Change the order in which things are built -- build the shared modules | Guido van Rossum | 1997-08-18 | 1 | -1/+7 |
| | | | | after the main interpreter. Needed for AIX. | ||||
* | Fix LINKCC for AIX | Guido van Rossum | 1997-08-18 | 2 | -3/+3 |
| | |||||
* | Recognize https:// as URL as well. | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | Oops. Of course, print b should also be print `b`. :-( | Guido van Rossum | 1997-08-18 | 1 | -1/+1 |
| | |||||
* | Use a trick to make the test for GMP v2 to work when GMP v1 defines | Guido van Rossum | 1997-08-17 | 1 | -1/+1 |
| | | | | | __GNU_MP__ as empty: #if __GNU_MP__ + 0 == 2 (Untested.) | ||||
* | Consistently change Python-C API to Python/C API; added lots of new | Guido van Rossum | 1997-08-17 | 2 | -18/+578 |
| | | | | | introductory text for reference counts and error handling, with good examples. | ||||
* | PyTuple_SetItem should require that the tuple's refcnt is one! | Guido van Rossum | 1997-08-17 | 1 | -1/+1 |
| | |||||
* | Different strategy regarding whether to declare getrusage() and | Guido van Rossum | 1997-08-17 | 1 | -11/+9 |
| | | | | | | 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. | ||||
* | set sharedlib extensions properly for NeXT (Ted Horst) | Guido van Rossum | 1997-08-16 | 1 | -0/+2 |
| | |||||
* | the usual | Guido van Rossum | 1997-08-16 | 1 | -2/+2 |
| | |||||
* | typo in next config | Guido van Rossum | 1997-08-16 | 1 | -1/+1 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r15a3'.v1.5a3 | cvs2svn | 1997-08-15 | 1 | -0/+1 |
| | |||||
* | Another typo (importand). | Guido van Rossum | 1997-08-15 | 1 | -1/+1 |
| | |||||
* | Final touch... | Guido van Rossum | 1997-08-15 | 1 | -4/+3 |
| | |||||
* | Tweaked all l2h targets to remove the target directory before renaming | Guido van Rossum | 1997-08-15 | 1 | -2/+4 |
| | | | | the intermediate target directory. | ||||
* | Fixes to make it pass latex without complaints. | Guido van Rossum | 1997-08-15 | 2 | -20/+28 |
| | |||||
* | Type ("thgis"). | Guido van Rossum | 1997-08-15 | 1 | -1/+1 |
| | |||||
* | New, more complete list of what's new, pointing to Misc/NEWS for the | Guido van Rossum | 1997-08-15 | 1 | -34/+86 |
| | | | | | whole list. Also changed all references to the FAQ to point to the FAQ wizard. | ||||
* | Use imp.find_module() as the most certain way to find the test data. | Guido van Rossum | 1997-08-15 | 1 | -1/+5 |
| | |||||
* | generated by regrtest.py -g | Jeremy Hylton | 1997-08-15 | 1 | -0/+1 |
| | |||||
* | test the zlib module | Jeremy Hylton | 1997-08-15 | 1 | -0/+94 |
| | | | | only produce output if somethign goes wrong | ||||
* | Last minute changes for \B. AMK. | Guido van Rossum | 1997-08-15 | 1 | -2/+2 |
| | |||||
* | Added tests for \b, \B (AMK). | Guido van Rossum | 1997-08-15 | 1 | -0/+13 |
| | |||||
* | Last minut changes for \B, \S (?). AMK. | Guido van Rossum | 1997-08-15 | 1 | -2/+2 |
| | |||||
* | Regenerated | Jack Jansen | 1997-08-15 | 13 | -14/+14 |
| | |||||
* | Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason | Jack Jansen | 1997-08-15 | 3 | -5/+59 |
| | | | | for blacklisting them. |