aboutsummaryrefslogtreecommitdiff
path: root/src/sysmodule.c
diff options
context:
space:
mode:
authorSkip Montanaro <[email protected]>2021-02-16 20:14:16 -0600
committerSkip Montanaro <[email protected]>2021-02-16 20:14:16 -0600
commitc2587c76f1b416cdbecb979e54941933246bf856 (patch)
treebb61ee9128075ce22af4eafa232f13c2e5a07896 /src/sysmodule.c
parentd90761a005b24018ae237bf551515772a1de656f (diff)
downloadpython-0.9.1-patched-QoL-c2587c76f1b416cdbecb979e54941933246bf856.tar.xz
python-0.9.1-patched-QoL-c2587c76f1b416cdbecb979e54941933246bf856.zip
starting over
Diffstat (limited to 'src/sysmodule.c')
-rw-r--r--src/sysmodule.c224
1 files changed, 112 insertions, 112 deletions
diff --git a/src/sysmodule.c b/src/sysmodule.c
index 6b3b576..ececf72 100644
--- a/src/sysmodule.c
+++ b/src/sysmodule.c
@@ -2,12 +2,12 @@
Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
Netherlands.
- All Rights Reserved
+ All Rights Reserved
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose and without fee is hereby granted,
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
-both that copyright notice and this permission notice appear in
+both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission.
@@ -57,52 +57,52 @@ static object *sysdict;
object *
sysget(name)
- char *name;
+ char *name;
{
- return dictlookup(sysdict, name);
+ return dictlookup(sysdict, name);
}
FILE *
sysgetfile(name, def)
- char *name;
- FILE *def;
+ char *name;
+ FILE *def;
{
- FILE *fp = NULL;
- object *v = sysget(name);
- if (v != NULL)
- fp = getfilefile(v);
- if (fp == NULL)
- fp = def;
- return fp;
+ FILE *fp = NULL;
+ object *v = sysget(name);
+ if (v != NULL)
+ fp = getfilefile(v);
+ if (fp == NULL)
+ fp = def;
+ return fp;
}
int
sysset(name, v)
- char *name;
- object *v;
+ char *name;
+ object *v;
{
- if (v == NULL)
- return dictremove(sysdict, name);
- else
- return dictinsert(sysdict, name, v);
+ if (v == NULL)
+ return dictremove(sysdict, name);
+ else
+ return dictinsert(sysdict, name, v);
}
static object *
sys_exit(self, args)
- object *self;
- object *args;
+ object *self;
+ object *args;
{
- int sts;
- if (!getintarg(args, &sts))
- return NULL;
- goaway(sts);
- exit(sts); /* Just in case */
- /* NOTREACHED */
+ int sts;
+ if (!getintarg(args, &sts))
+ return NULL;
+ goaway(sts);
+ exit(sts); /* Just in case */
+ /* NOTREACHED */
}
static struct methodlist sys_methods[] = {
- {"exit", sys_exit},
- {NULL, NULL} /* sentinel */
+ {"exit", sys_exit},
+ {NULL, NULL} /* sentinel */
};
static object *sysin, *sysout, *syserr;
@@ -110,105 +110,105 @@ static object *sysin, *sysout, *syserr;
void
initsys()
{
- object *m = initmodule("sys", sys_methods);
- sysdict = getmoduledict(m);
- INCREF(sysdict);
- /* NB keep an extra ref to the std files to avoid closing them
- when the user deletes them */
- /* XXX File objects should have a "don't close" flag instead */
- sysin = newopenfileobject(stdin, "<stdin>", "r");
- sysout = newopenfileobject(stdout, "<stdout>", "w");
- syserr = newopenfileobject(stderr, "<stderr>", "w");
- if (err_occurred())
- fatal("can't create sys.std* file objects");
- dictinsert(sysdict, "stdin", sysin);
- dictinsert(sysdict, "stdout", sysout);
- dictinsert(sysdict, "stderr", syserr);
- dictinsert(sysdict, "modules", get_modules());
- if (err_occurred())
- fatal("can't insert sys.* objects in sys dict");
+ object *m = initmodule("sys", sys_methods);
+ sysdict = getmoduledict(m);
+ INCREF(sysdict);
+ /* NB keep an extra ref to the std files to avoid closing them
+ when the user deletes them */
+ /* XXX File objects should have a "don't close" flag instead */
+ sysin = newopenfileobject(stdin, "<stdin>", "r");
+ sysout = newopenfileobject(stdout, "<stdout>", "w");
+ syserr = newopenfileobject(stderr, "<stderr>", "w");
+ if (err_occurred())
+ fatal("can't create sys.std* file objects");
+ dictinsert(sysdict, "stdin", sysin);
+ dictinsert(sysdict, "stdout", sysout);
+ dictinsert(sysdict, "stderr", syserr);
+ dictinsert(sysdict, "modules", get_modules());
+ if (err_occurred())
+ fatal("can't insert sys.* objects in sys dict");
}
static object *
makepathobject(path, delim)
- char *path;
- int delim;
+ char *path;
+ int delim;
{
- int i, n;
- char *p;
- object *v, *w;
-
- n = 1;
- p = path;
- while ((p = strchr(p, delim)) != NULL) {
- n++;
- p++;
- }
- v = newlistobject(n);
- if (v == NULL)
- return NULL;
- for (i = 0; ; i++) {
- p = strchr(path, delim);
- if (p == NULL)
- p = strchr(path, '\0'); /* End of string */
- w = newsizedstringobject(path, (int) (p - path));
- if (w == NULL) {
- DECREF(v);
- return NULL;
- }
- setlistitem(v, i, w);
- if (*p == '\0')
- break;
- path = p+1;
- }
- return v;
+ int i, n;
+ char *p;
+ object *v, *w;
+
+ n = 1;
+ p = path;
+ while ((p = strchr(p, delim)) != NULL) {
+ n++;
+ p++;
+ }
+ v = newlistobject(n);
+ if (v == NULL)
+ return NULL;
+ for (i = 0; ; i++) {
+ p = strchr(path, delim);
+ if (p == NULL)
+ p = strchr(path, '\0'); /* End of string */
+ w = newsizedstringobject(path, (int) (p - path));
+ if (w == NULL) {
+ DECREF(v);
+ return NULL;
+ }
+ setlistitem(v, i, w);
+ if (*p == '\0')
+ break;
+ path = p+1;
+ }
+ return v;
}
void
setpythonpath(path)
- char *path;
+ char *path;
{
- object *v;
- if ((v = makepathobject(path, DELIM)) == NULL)
- fatal("can't create sys.path");
- if (sysset("path", v) != 0)
- fatal("can't assign sys.path");
- DECREF(v);
+ object *v;
+ if ((v = makepathobject(path, DELIM)) == NULL)
+ fatal("can't create sys.path");
+ if (sysset("path", v) != 0)
+ fatal("can't assign sys.path");
+ DECREF(v);
}
static object *
makeargvobject(argc, argv)
- int argc;
- char **argv;
+ int argc;
+ char **argv;
{
- object *av;
- if (argc < 0 || argv == NULL)
- argc = 0;
- av = newlistobject(argc);
- if (av != NULL) {
- int i;
- for (i = 0; i < argc; i++) {
- object *v = newstringobject(argv[i]);
- if (v == NULL) {
- DECREF(av);
- av = NULL;
- break;
- }
- setlistitem(av, i, v);
- }
- }
- return av;
+ object *av;
+ if (argc < 0 || argv == NULL)
+ argc = 0;
+ av = newlistobject(argc);
+ if (av != NULL) {
+ int i;
+ for (i = 0; i < argc; i++) {
+ object *v = newstringobject(argv[i]);
+ if (v == NULL) {
+ DECREF(av);
+ av = NULL;
+ break;
+ }
+ setlistitem(av, i, v);
+ }
+ }
+ return av;
}
void
setpythonargv(argc, argv)
- int argc;
- char **argv;
+ int argc;
+ char **argv;
{
- object *av = makeargvobject(argc, argv);
- if (av == NULL)
- fatal("no mem for sys.argv");
- if (sysset("argv", av) != 0)
- fatal("can't assign sys.argv");
- DECREF(av);
+ object *av = makeargvobject(argc, argv);
+ if (av == NULL)
+ fatal("no mem for sys.argv");
+ if (sysset("argv", av) != 0)
+ fatal("can't assign sys.argv");
+ DECREF(av);
}