mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00
Fix spelling mistakes. Bugfix candidates.
This commit is contained in:
parent
4fd5a06580
commit
2a47c0fa23
4 changed files with 6 additions and 6 deletions
|
@ -61,7 +61,7 @@ int Py_OptimizeFlag = 0;
|
|||
"name '%.400s' is used prior to global declaration"
|
||||
|
||||
#define LOCAL_GLOBAL \
|
||||
"name '%.400s' is a function paramter and declared global"
|
||||
"name '%.400s' is a function parameter and declared global"
|
||||
|
||||
#define LATE_FUTURE \
|
||||
"from __future__ imports must occur at the beginning of the file"
|
||||
|
|
|
@ -410,9 +410,9 @@ static char setdlopenflags_doc[] =
|
|||
"setdlopenflags(n) -> None\n\
|
||||
\n\
|
||||
Set the flags that will be used for dlopen() calls. Among other\n\
|
||||
things, this will enable a lazy resolving of symbols when imporing\n\
|
||||
things, this will enable a lazy resolving of symbols when importing\n\
|
||||
a module, if called as sys.setdlopenflags(0)\n\
|
||||
To share symols across extension modules, call as\n\
|
||||
To share symbols across extension modules, call as\n\
|
||||
sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)";
|
||||
|
||||
static PyObject *
|
||||
|
@ -673,7 +673,7 @@ Static objects:\n\
|
|||
\n\
|
||||
maxint -- the largest supported integer (the smallest is -maxint-1)\n\
|
||||
maxunicode -- the largest supported character\n\
|
||||
builtin_module_names -- tuple of module names built into this intepreter\n\
|
||||
builtin_module_names -- tuple of module names built into this interpreter\n\
|
||||
version -- the version of this interpreter as a string\n\
|
||||
version_info -- version information as a tuple\n\
|
||||
hexversion -- version information encoded as a single integer\n\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue