diff options
author | Guido van Rossum <guido@python.org> | 1996-06-20 16:49:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-06-20 16:49:26 (GMT) |
commit | 8026febbd678ab132b96f96314b6fd222f4082c6 (patch) | |
tree | 40242c33f335d997455c7b5575913514561a2e40 /Modules/main.c | |
parent | be32c8921c37ca5d154b77510cbf339609087e71 (diff) | |
download | cpython-8026febbd678ab132b96f96314b6fd222f4082c6.zip cpython-8026febbd678ab132b96f96314b6fd222f4082c6.tar.gz cpython-8026febbd678ab132b96f96314b6fd222f4082c6.tar.bz2 |
Made comment for getprogramname() more helpful.
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index e123976..0d17c34 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -219,7 +219,8 @@ main(argc, argv) } -/* Return the program name -- some code out there needs this. */ +/* Return the program name -- some code out there needs this + (currently _tkinter.c and importdl.c). */ char * getprogramname() |