diff options
author | Guido van Rossum <guido@python.org> | 1991-10-20 20:28:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-10-20 20:28:02 (GMT) |
commit | 1242f1da6734c4660b3e557a4764d93783d85d51 (patch) | |
tree | 5e5aad3d75e830137bf5e5ef77236ea8afd295b4 | |
parent | 7e3090cf08413217d7dfb7dff83338ee389fb3e1 (diff) | |
download | cpython-1242f1da6734c4660b3e557a4764d93783d85d51.zip cpython-1242f1da6734c4660b3e557a4764d93783d85d51.tar.gz cpython-1242f1da6734c4660b3e557a4764d93783d85d51.tar.bz2 |
Added a little comment
-rw-r--r-- | Modules/cgen.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/cgen.py b/Modules/cgen.py index f1e8b63..69ad154 100644 --- a/Modules/cgen.py +++ b/Modules/cgen.py @@ -1,6 +1,10 @@ # Python script to parse cstubs file for gl and generate C stubs. # usage: python cgen.py <cstubs >glmodule.c # +# NOTE: You must first make a python binary without the "GL" option +# before you can run this, when building Python for the first time. +# See comments in the Makefile. +# # XXX BUG return arrays generate wrong code # XXX need to change error returns into gotos to free mallocked arrays |