]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mention the new 'import X as Y' syntax
authorAndrew M. Kuchling <amk@amk.ca>
Thu, 17 Aug 2000 23:37:01 +0000 (23:37 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Thu, 17 Aug 2000 23:37:01 +0000 (23:37 +0000)
Doc/whatsnew/whatsnew20.tex

index b2fe85729c2cdd7dbf30303880069b702f732f91..3081d16c6da2d323b3288450af63be37267a13f4 100644 (file)
@@ -607,6 +607,10 @@ optional ``base'' parameter when the first argument is a string.
 291.  \code{int(123, 16)} raises a \exception{TypeError} exception
 with the message ``can't convert non-string with explicit base''.
 
+Modules can now be renamed on importing them, using the syntax
+\code{import \var{module} as \var{name}} or \code{from \var{module}
+import \var{name} as \var{othername}}.
+
 Previously there was no way to implement a class that overrode
 Python's built-in \keyword{in} operator and implemented a custom
 version.  \code{\var{obj} in \var{seq}} returns true if \var{obj} is