[Python-checkins] python/dist/src/Doc/ref ref2.tex,1.23,1.23.4.1

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Tue, 18 Jun 2002 12:18:24 -0700


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory usw-pr-cvs1:/tmp/cvs-serv24640/ref

Modified Files:
      Tag: release21-maint
	ref2.tex 
Log Message:
Add a note about "as" not being a keyword, though it has special meaning
when used as part of the import statement.

Note that both "as" and "None" becoming keywords in the future.

Closes SF bug #553262.


Index: ref2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref2.tex,v
retrieving revision 1.23
retrieving revision 1.23.4.1
diff -C2 -d -r1.23 -r1.23.4.1
*** ref2.tex	14 Feb 2001 04:03:51 -0000	1.23
--- ref2.tex	18 Jun 2002 19:18:21 -0000	1.23.4.1
***************
*** 281,284 ****
--- 281,291 ----
  \end{description}
  
+ Note that although the identifier \code{as} can be used as part of the
+ syntax of \keyword{import} statements, it is not currently a reserved
+ word.
+ 
+ In some future version of Python, the identifiers \code{as} and
+ \code{None} will both become keywords.
+ 
  
  \section{Literals\label{literals}}