diff options
| author | Michael W. Hudson <mwh@python.net> | 2002-02-06 17:06:03 (GMT) |
|---|---|---|
| committer | Michael W. Hudson <mwh@python.net> | 2002-02-06 17:06:03 (GMT) |
| commit | fa338d7fad1c2e9f1c16849e9eac59ccfe9d878b (patch) | |
| tree | 8e6ae6fb12d84989a0819efb2e3756e82b924088 /Python/sysmodule.c | |
| parent | 9cd2e8605248cab037b2f05b78fdd3c504fe8764 (diff) | |
| download | cpython-fa338d7fad1c2e9f1c16849e9eac59ccfe9d878b.zip cpython-fa338d7fad1c2e9f1c16849e9eac59ccfe9d878b.tar.gz cpython-fa338d7fad1c2e9f1c16849e9eac59ccfe9d878b.tar.bz2 | |
Fix a bunch of typos found by nnorwitz.
Diffstat (limited to 'Python/sysmodule.c')
| -rw-r--r-- | Python/sysmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index cdc728c..90338de 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -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\ |
