summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__,Guido van Rossum1998-02-191-0/+4
| | | | __stderr__. These will be used by the import cleanup.
* Get rid of another reference to _PyImport_Inittab (now a static array)Guido van Rossum1997-11-041-2/+2
| | | | | that should be PyImport_Inittab (a new pointer initialized to point to the array).
* Get DLL version from a variable.Guido van Rossum1997-09-291-1/+3
|
* Remove unised variableGuido van Rossum1997-08-071-1/+0
|
* The last of the mass checkins for separate (sub)interpreters.Guido van Rossum1997-08-021-24/+26
| | | | | | | Everything should now work again. See the comments for the .h files mass checkin (e.g. pystate.h) for more detail.
* Removed a bunch of extern declarations of functions that are nowGuido van Rossum1997-07-191-7/+0
| | | | properly declared in Python.h.
* Set sys.executable to full path of python (from argv[0]).Guido van Rossum1997-05-221-0/+4
|
* Use #ifdef in stead of #if (Jack)Guido van Rossum1997-05-201-1/+1
|
* Massive changes for separate thread state management.Guido van Rossum1997-05-051-9/+30
| | | | | All per-thread globals are moved into a struct which is manipulated separately.
* Oops, forgot one: inittab.Guido van Rossum1997-04-291-2/+2
|
* Quickly renamed.Guido van Rossum1997-04-291-143/+147
|
* Expand one level of symbolic link in sys.argv[0] before inserting itsGuido van Rossum1997-04-251-8/+41
| | | | | | | | | | | | | | dirname in sys.path. This means that you can create a symbolic link foo in /usr/local/bin pointing to /usr/yourname/src/foo/foo.py, and then invoking foo will insert /usr/yourname/src/foo in sys.path, not /usr/local/bin. This makes it easier to have multifile programs (before, the program would have to do an os.readlink(sys.argv[0]) itself and insert the resulting directory in sys.path -- Grail does this). Note that the expansion is only used for sys.path; sys.argv[0] is still the original, unadorned filename (/usr/local/bin/foo in the example).
* Added optional interface for dynamic execution profile (to be gatheredGuido van Rossum1997-01-241-2/+11
| | | | in ceval.c).
* Make builtin_module_names a tuple instead of a list.Guido van Rossum1997-01-061-0/+5
|
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
|
* Rationalized MS ifdefsGuido van Rossum1996-09-111-1/+1
|
* Changes to setpythonpath():Guido van Rossum1996-09-101-4/+23
| | | | | 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.winverGuido van Rossum1996-08-231-2/+2
|
* Always insert script directory in front of sys.path -- if there's noGuido van Rossum1996-07-301-17/+17
| | | | | 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), theGuido van Rossum1996-07-241-0/+18
| | | | | | 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 ifdefsGuido van Rossum1996-06-281-1/+1
|
* Define sys.prefix and sys.exec_prefix (see Modules/getpath.c; from Makefile).Guido van Rossum1996-06-171-0/+7
|
* rename printrefs, getobjects to _Py_ prefixGuido van Rossum1996-05-241-2/+4
|
* TRACE_REFS -> Py_TRACE_REFSGuido van Rossum1996-05-231-2/+2
|
* Under NT, define sys.dllhandle and sys.winver (Mark H.).Guido van Rossum1996-04-091-0/+10
|
* fix args options for setcheckintervalGuido van Rossum1996-01-121-1/+1
|
* Implemented two new functions in sys:Sjoerd Mullender1995-08-291-0/+34
| | | | | | | | | | | | 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.platformGuido van Rossum1995-07-071-0/+3
|
* init sys_checkinterval to 10Guido van Rossum1995-03-301-1/+1
|
* fix comment about exit()Guido van Rossum1995-03-201-1/+1
|
* add explicit 0 flags for methodlistGuido van Rossum1995-02-211-5/+5
|
* sys.check_interval=x -> sys.setcheckinterval(x)Guido van Rossum1995-01-091-0/+13
|
* Added 1995 to copyright message.Guido van Rossum1995-01-041-2/+2
| | | | | | 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 ofGuido van Rossum1995-01-021-1/+2
| | | | | | 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 trunkGuido van Rossum1994-08-301-6/+16
|
* * Added Fixcprt.py: script to fix copyright message.Guido van Rossum1993-01-261-2/+21
| | | | | | | | | | | * 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 orGuido van Rossum1992-09-251-1/+1
| | | | | | 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 Rossum1992-09-031-0/+21
|
* sysmodule.c: calling sys.settrace() or sys.setprofile() withoutGuido van Rossum1992-06-191-2/+2
| | | | | | | | | 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_profileGuido van Rossum1992-04-051-3/+7
|
* Added settrace() and setprofile().Guido van Rossum1992-03-231-13/+30
|
* sysset(name, NULL) does nothing if sys.name is undefinedGuido van Rossum1992-01-261-2/+6
|
* Ensure that sys.argv[0] always exists (maybe as empty string).Guido van Rossum1992-01-141-2/+6
|
* Raise SystemExit instead of calling goaway().Guido van Rossum1991-12-311-6/+3
|
* Added sys.version object.Guido van Rossum1991-12-101-1/+5
|
* Generalize to macintosh.Guido van Rossum1991-06-241-1/+1
|
* Added fclose to newopenfileobject() calls.Guido van Rossum1991-06-041-4/+4
|
* Defined path delimiter for MS-DOS as semicolonGuido van Rossum1991-05-051-0/+4
|
* Added copyright notice.Guido van Rossum1991-02-191-0/+24
|
* "Compiling" versionGuido van Rossum1990-12-201-100/+99
|