Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Added optional interface for dynamic execution profile (to be gathered | Guido van Rossum | 1997-01-24 |
| | | | | in ceval.c). | ||
* | Make builtin_module_names a tuple instead of a list. | Guido van Rossum | 1997-01-06 |
| | |||
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 |
| | |||
* | Rationalized MS ifdefs | Guido van Rossum | 1996-09-11 |
| | |||
* | Changes to setpythonpath(): | Guido van Rossum | 1996-09-10 |
| | | | | | Test for / as well as for SEP for MS filenames. Drop trailing separator from sys.path[0] for MS and Unix filenames. | ||
* | Use MS_DLL_ID as sys.winver | Guido van Rossum | 1996-08-23 |
| | |||
* | Always insert script directory in front of sys.path -- if there's no | Guido van Rossum | 1996-07-30 |
| | | | | | sys.argv, insert "". Note that "." is removed as a default component of the path (see changes to getpath.c and Setup.in). | ||
* | As a side effect of calling PySys_SetArgv (setpythonargv), the | Guido van Rossum | 1996-07-24 |
| | | | | | | directory containing argv[0] is inserted in front of sys.path. If argv[0] contains no directory, an empty string is inserted. If argv is empty, nothing happens. | ||
* | Slightly different Windows ifdefs | Guido van Rossum | 1996-06-28 |
| | |||
* | Define sys.prefix and sys.exec_prefix (see Modules/getpath.c; from Makefile). | Guido van Rossum | 1996-06-17 |
| | |||
* | rename printrefs, getobjects to _Py_ prefix | Guido van Rossum | 1996-05-24 |
| | |||
* | TRACE_REFS -> Py_TRACE_REFS | Guido van Rossum | 1996-05-23 |
| | |||
* | Under NT, define sys.dllhandle and sys.winver (Mark H.). | Guido van Rossum | 1996-04-09 |
| | |||
* | fix args options for setcheckinterval | Guido van Rossum | 1996-01-12 |
| | |||
* | Implemented two new functions in sys: | Sjoerd Mullender | 1995-08-29 |
| | | | | | | | | | | | | getcounts() returns a list of counts of allocations and deallocations for all different object types. getobjects(n [, type ]) returns a list of recently allocated and not-yet-freed objects of the given type (all objects if no type given). Only the n most recent (all if n==0) objects are returned. getcounts is only available if compiled with -DCOUNT_ALLOCS, getobjects is only available if compiled with -DTRACE_REFS. Note that everything must be compiled with these options! | ||
* | added sys.platform | Guido van Rossum | 1995-07-07 |
| | |||
* | init sys_checkinterval to 10 | Guido van Rossum | 1995-03-30 |
| | |||
* | fix comment about exit() | Guido van Rossum | 1995-03-20 |
| | |||
* | add explicit 0 flags for methodlist | Guido van Rossum | 1995-02-21 |
| | |||
* | sys.check_interval=x -> sys.setcheckinterval(x) | Guido van Rossum | 1995-01-09 |
| | |||
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 |
| | | | | | | bltinmodule.c: fixed coerce() nightmare in ternary pow(). modsupport.c (initmodule2): pass METH_FREENAME flag to newmethodobject(). pythonrun.c: move flushline() into and around print_error(). | ||
* | Lots of changes, most minor (fatal() instead of abort(), use of | Guido van Rossum | 1995-01-02 |
| | | | | | | err_fetch/err_restore and so on). But... NOTE: import.c has been rewritten and all the DL stuff is now in the new file importdl.c. | ||
* | Merge back to main trunk | Guido van Rossum | 1994-08-30 |
| | |||
* | * Added Fixcprt.py: script to fix copyright message. | Guido van Rossum | 1993-01-26 |
| | | | | | | | | | | | * various modules: added 1993 to copyright. * thread.c: added copyright notice. * ceval.c: minor change to error message for "+" * stdwinmodule.c: check for error from wfetchcolor * config.c: MS-DOS fixes (define PYTHONPATH, use DELIM, use osdefs.h) * Add declaration of inittab to import.h * sysmodule.c: added sys.builtin_module_names * xxmodule.c, xxobject.c: fix minor errors | ||
* | Modified most (but not yet all) I/O to always go through sys.stdout or | Guido van Rossum | 1992-09-25 |
| | | | | | | sys.stderr or sys.stdin, and to work with any object as long as it has a write() (respectively readline()) methods. Some functions that took a FILE* argument now take an object* argument. | ||
* | Add an optional interface to turn malloc debugging on and off. | Guido van Rossum | 1992-09-03 |
| | |||
* | sysmodule.c: calling sys.settrace() or sys.setprofile() without | Guido van Rossum | 1992-06-19 |
| | | | | | | | | | arguments crashed in INCREF() calls which should be XINCREF() calls. timemodule.c: fix for SEQUENT port (sys/select, struct timezone) by Jaap Vermeulen xxobject.c: include modsupport.h | ||
* | Fix reference counts of sys_trace and sys_profile | Guido van Rossum | 1992-04-05 |
| | |||
* | Added settrace() and setprofile(). | Guido van Rossum | 1992-03-23 |
| | |||
* | sysset(name, NULL) does nothing if sys.name is undefined | Guido van Rossum | 1992-01-26 |
| | |||
* | Ensure that sys.argv[0] always exists (maybe as empty string). | Guido van Rossum | 1992-01-14 |
| | |||
* | Raise SystemExit instead of calling goaway(). | Guido van Rossum | 1991-12-31 |
| | |||
* | Added sys.version object. | Guido van Rossum | 1991-12-10 |
| | |||
* | Generalize to macintosh. | Guido van Rossum | 1991-06-24 |
| | |||
* | Added fclose to newopenfileobject() calls. | Guido van Rossum | 1991-06-04 |
| | |||
* | Defined path delimiter for MS-DOS as semicolon | Guido van Rossum | 1991-05-05 |
| | |||
* | Added copyright notice. | Guido van Rossum | 1991-02-19 |
| | |||
* | "Compiling" version | Guido van Rossum | 1990-12-20 |
| | |||
* | Empty all modules' symbol tables, so most circular references are | Guido van Rossum | 1990-11-18 |
| | | | | | | cleared up. (A function definition references its module's symbol table but the symbol table of course references the function...) | ||
* | Initial revision | Guido van Rossum | 1990-10-14 |