summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* TRACE_REFS -> Py_TRACE_REFSGuido van Rossum1996-05-231-2/+2
|
* Added PySys_SetPath.Guido van Rossum1996-05-221-0/+1
|
* Don't declare Py_FatalError.Guido van Rossum1996-05-221-1/+2
| | | | Add Py_mport_Init and PyBuiltin_Init.
* Define DL_IMPORT if necessary.Guido van Rossum1996-05-221-1/+6
| | | | Include pydebug.h instead of declaring Py_FatalError.
* Added __WATCOMC__ as DOS compiler.Guido van Rossum1996-05-221-1/+1
|
* Added decl for PyImport_Init.Guido van Rossum1996-05-221-2/+6
| | | | Changed decl for inittab to define struct _inittab first.
* Used new names for PyBuiltin_GetDict, PyBuiltin_GetModule.Guido van Rossum1996-05-221-2/+3
| | | | Added PyBuiltin_Init.
* Added PyFile_decls for PyFile_WriteObject, PyFile_SoftSpace,Guido van Rossum1996-05-221-0/+3
| | | | PyFile_WriteString.
* Debug related variable/function definitions go here.Guido van Rossum1996-05-221-0/+40
|
* Non-trivial DL_IMPORT must now be defined in config.h.Guido van Rossum1996-05-221-17/+16
| | | | | Include <stdlib.h>. Include several more Python header files, including new pydebug.h.
* Use new names for debug macros. Don't include pythonrun.h.Guido van Rossum1996-05-221-6/+5
|
* TRACE_REFS -> Py_TRACE_REFS.Guido van Rossum1996-05-221-1/+5
| | | | Added disgusting hack to force loading of abstract.o.
* Added some visual enhancements of debugging ifdefs.Guido van Rossum1996-05-221-5/+11
| | | | Added PyNumber_Coerce decl.
* Removed TRACE_REFS and REF_DEBUG b/w compat hacks -- they don't work.Guido van Rossum1996-05-221-8/+2
| | | | Added defs for getbuiltindict, getbuiltinmod (bltinmodule.c).
* Plug memory leak in the previous fix :-(Guido van Rossum1996-05-211-1/+0
|
* Fix obscure bug in string%mapping where the mapping creates its itemsGuido van Rossum1996-05-211-21/+12
| | | | | on the fly -- there was an unsafe DECREF. Actually save some lines of code by using abstract.c:PyObject_GetItem().
* more changes copied from GrailGuido van Rossum1996-05-212-60/+98
|
* Modified for 1.3.3 distributionJack Jansen1996-05-201-17/+10
|
* Added splash method (to quickly display splash screen without firstJack Jansen1996-05-201-0/+20
| | | | having to load a zillion extension modules)
* Added wasteJack Jansen1996-05-201-0/+6
|
* Fixed callback handling on 68K machines.Jack Jansen1996-05-202-16/+22
|
* re-binhexed for 1.3.3 distributionJack Jansen1996-05-206-237/+239
|
* Added waste and _tkinter modulesJack Jansen1996-05-201-0/+2
|
* Recreated tkpython.rsrc, upped version numberJack Jansen1996-05-204-3486/+3567
|
* Added USE_WASTE defineJack Jansen1996-05-201-0/+1
|
* Fixed up for 1.3.3 distribution, removed various old (and nuused)Jack Jansen1996-05-2019-8984/+5114
| | | | project files.
* Export OptResObj_{New,Convert}Jack Jansen1996-05-201-0/+2
|
* Changed for 1.3.3 distributionJack Jansen1996-05-202-17/+144
|
* Remember source filename as <module>.__file__.Guido van Rossum1996-05-161-0/+3
|
* Made Place.info == Pack.infoGuido van Rossum1996-05-162-2/+20
|
* Yet another mini fix to pack/grid info.Guido van Rossum1996-05-162-4/+4
|
* Patch from the net for 4.1 file handler changes.Guido van Rossum1996-05-161-1/+19
|
* Add __sinit() call according to Jack.Guido van Rossum1996-05-161-0/+1
|
* Some more changes from the net... Typos, 4.0/4.1 issues, new tkButtonInvoke().Guido van Rossum1996-05-162-10/+50
|
* Resync with Grail's Tkinter.py.Guido van Rossum1996-05-162-390/+680
|
* Set the base for atoi() and atol() to 0, since we're reading PythonGuido van Rossum1996-05-151-3/+3
| | | | | numbers here, and so that atol() doesn't barf on the trailing 'L'. Add a test case involving a long integer.
* Added __name__ attribute to class instance method objects.Guido van Rossum1996-05-141-7/+15
| | | | | | Removed im_doc attribute; __name__ and __doc__ are now handled by special casing in instancemethodgetattr(). This saves a few bytes and INCREF/DECREF calls per i.m. object allocation/deallocation.
* Added _id attribute to GrafPort objects (real id of grafport, numeric)Jack Jansen1996-05-082-3/+6
|
* Fixed reference to cr/lf problemsJack Jansen1996-05-071-2/+2
|
* A version of swed that can import html files. Also demonstratesJack Jansen1996-05-071-0/+826
| | | | implementing object handlers in Python.
* Added call to initialize standard (i.e. implemented in C) embeddedJack Jansen1996-05-071-0/+1
| | | | object handlers
* Added support for callbacks (for embedded objects)Jack Jansen1996-05-073-4/+453
|
* Removed some spurios biindex calls.Guido van Rossum1996-05-022-8/+22
| | | | | Added description of file.truncate(). Added warning to write() about buffering.
* Added warning about behavior of open mode 'a' (or 'a+').Guido van Rossum1996-05-022-2/+8
|
* Removed broken tst.pyGuido van Rossum1996-04-261-80/+0
|
* Added MenuItem methods setstyle(), seticon(), setmark()Jack Jansen1996-04-231-0/+12
|
* Extension to wed that handles styles, fonts and sizesJack Jansen1996-04-231-0/+627
|
* Made style and soup handles optionalJack Jansen1996-04-233-17/+27
|
* An interface to the WASTE textedit replacement library.Jack Jansen1996-04-192-209/+565
|
* Keep .exp files in cvs treeJack Jansen1996-04-199-0/+38
|