[Python-checkins] CVS: python/nondist/peps pep-0200.txt,1.10,1.11

Thomas Wouters python-dev@python.org
Tue, 15 Aug 2000 01:05:44 -0700


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv25844

Modified Files:
	pep-0200.txt 
Log Message:

Add one more proposed item, and change some wording on the 'import as' item.



Index: pep-0200.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0200.txt,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** pep-0200.txt	2000/08/15 07:47:12	1.10
--- pep-0200.txt	2000/08/15 08:05:42	1.11
***************
*** 202,206 ****
      * "import as" - Thomas Wouters
        Extend the 'import' and 'from ... import' mechanism to enable
!       importing a symbol as another name.
  
      * Extended slicing on lists - Michael Hudson
--- 202,206 ----
      * "import as" - Thomas Wouters
        Extend the 'import' and 'from ... import' mechanism to enable
!       importing a symbol as another name. (Without adding a new keyword.)
  
      * Extended slicing on lists - Michael Hudson
***************
*** 212,215 ****
--- 212,219 ----
        getitem if there is no getslice.
        
+     * 'indexing-for' - Thomas Wouters
+       Special syntax to give Python code access to the loop-counter in 'for'
+       loops. (Without adding a new keyword.)
+ 
  
  Declined