diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-01-13 16:08:56 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-01-13 16:08:56 (GMT) |
commit | 07f9398dc949614d54d4fdc61a0be04d6a7fd700 (patch) | |
tree | b1b30e8c9ad02007f82cf083c597977dcd2f3b01 /Include | |
parent | 41b71b2f4f6e7c6ff9c92abfed2dd0f6c1a1c1a2 (diff) | |
download | cpython-07f9398dc949614d54d4fdc61a0be04d6a7fd700.zip cpython-07f9398dc949614d54d4fdc61a0be04d6a7fd700.tar.gz cpython-07f9398dc949614d54d4fdc61a0be04d6a7fd700.tar.bz2 |
Update comment, QnewFlag will go away in 3.0, not 2.3
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pydebug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h index 9a5773a..f49a98e 100644 --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -16,9 +16,9 @@ PyAPI_DATA(int) Py_TabcheckFlag; PyAPI_DATA(int) Py_UnicodeFlag; PyAPI_DATA(int) Py_IgnoreEnvironmentFlag; PyAPI_DATA(int) Py_DivisionWarningFlag; -/* _XXX Py_QnewFlag should go away in 2.3. It's true iff -Qnew is passed, +/* _XXX Py_QnewFlag should go away in 3.0. It's true iff -Qnew is passed, on the command line, and is used in 2.2 by ceval.c to make all "/" divisions - true divisions (which they will be in 2.3). */ + true divisions (which they will be in 3.0). */ PyAPI_DATA(int) _Py_QnewFlag; /* this is a wrapper around getenv() that pays attention to |