[Python-checkins] CVS: python/dist/src/Python compile.c,2.234.4.1,2.234.4.2 sysmodule.c,2.98.6.1,2.98.6.2

Michael Hudson mwh@users.sourceforge.net
Wed, 06 Feb 2002 09:06:05 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv5536/Python

Modified Files:
      Tag: release22-maint
	compile.c sysmodule.c 
Log Message:
Fix a bunch of typos found by nnorwitz.



Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.234.4.1
retrieving revision 2.234.4.2
diff -C2 -d -r2.234.4.1 -r2.234.4.2
*** compile.c	2002/01/28 16:06:11	2.234.4.1
--- compile.c	2002/02/06 17:06:02	2.234.4.2
***************
*** 62,66 ****
  
  #define LOCAL_GLOBAL \
! "name '%.400s' is a function paramter and declared global"
  
  #define LATE_FUTURE \
--- 62,66 ----
  
  #define LOCAL_GLOBAL \
! "name '%.400s' is a function parameter and declared global"
  
  #define LATE_FUTURE \
***************
*** 4453,4457 ****
  
  #define ILLEGAL_EXEC_AND_IMPORT_STAR \
! "function '%.100s' uses import * and bare exec, which are illegal" \
  "because it %s"
  
--- 4453,4457 ----
  
  #define ILLEGAL_EXEC_AND_IMPORT_STAR \
! "function '%.100s' uses import * and bare exec, which are illegal " \
  "because it %s"
  

Index: sysmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/sysmodule.c,v
retrieving revision 2.98.6.1
retrieving revision 2.98.6.2
diff -C2 -d -r2.98.6.1 -r2.98.6.2
*** sysmodule.c	2002/01/12 11:13:24	2.98.6.1
--- sysmodule.c	2002/02/06 17:06:03	2.98.6.2
***************
*** 411,417 ****
  \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\
  a module, if called as sys.setdlopenflags(0)\n\
! To share symols across extension modules, call as\n\
  sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)";
  
--- 411,417 ----
  \n\
  Set the flags that will be used for dlopen() calls. Among other\n\
! things, this will enable a lazy resolving of symbols when importing\n\
  a module, if called as sys.setdlopenflags(0)\n\
! To share symbols across extension modules, call as\n\
  sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)";
  
***************
*** 674,678 ****
  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\
  version -- the version of this interpreter as a string\n\
  version_info -- version information as a tuple\n\
--- 674,678 ----
  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 interpreter\n\
  version -- the version of this interpreter as a string\n\
  version_info -- version information as a tuple\n\