[Python-checkins] CVS: python/dist/src/Lib __future__.py,1.5,1.6 symtable.py,1.4,1.5

Tim Peters tim_one@users.sourceforge.net
Thu, 12 Jul 2001 15:36:04 -0700


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

Modified Files:
	__future__.py symtable.py 
Log Message:
Remove now-unnecessary "from __future__  import nested_scopes" stmts.


Index: __future__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/__future__.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** __future__.py	2001/03/15 10:45:44	1.5
--- __future__.py	2001/07/12 22:36:02	1.6
***************
*** 67,69 ****
                              `self.getMandatoryRelease()` + ")"
  
! nested_scopes = _Feature((2, 1, 0, "beta", 1), (2, 2, 0, "final", 0))
--- 67,69 ----
                              `self.getMandatoryRelease()` + ")"
  
! nested_scopes = _Feature((2, 1, 0, "beta", 1), (2, 2, 0, "alpha", 0))

Index: symtable.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/symtable.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** symtable.py	2001/04/16 18:43:18	1.4
--- symtable.py	2001/07/12 22:36:02	1.5
***************
*** 1,4 ****
  """Interface to the compiler's internal symbol tables"""
- from __future__ import nested_scopes
  
  import _symtable
--- 1,3 ----