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

Tim Peters tim_one@users.sourceforge.net
Fri, 17 Aug 2001 15:42:28 -0700


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv21341

Modified Files:
	pep-0236.txt 
Log Message:
Record that PEP 264 resolved some open issues left hanging in 236.


Index: pep-0236.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0236.txt,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** pep-0236.txt	2001/08/01 20:11:56	1.9
--- pep-0236.txt	2001/08/17 22:42:26	1.10
***************
*** 215,219 ****
  
  
! Paritally Resolved Problem:  Runtime Compilation
  
      Several Python features can compile code during a module's runtime:
--- 215,219 ----
  
  
! Resolved Problem:  Runtime Compilation
  
      Several Python features can compile code during a module's runtime:
***************
*** 235,239 ****
      use M's choices, not necessarily the doctest module's choices.  In the
      2.1 release, this isn't possible, and no scheme has yet been suggested
!     for working around this.
  
      In any case, a future_statement appearing "near the top" (see Syntax
--- 235,240 ----
      use M's choices, not necessarily the doctest module's choices.  In the
      2.1 release, this isn't possible, and no scheme has yet been suggested
!     for working around this.  NOTE:  PEP 264 later addressed this in a
!     flexible way, by adding optional arguments to compile().
  
      In any case, a future_statement appearing "near the top" (see Syntax
***************
*** 262,266 ****
  
  
! Unresolved Problem:  Simulated Interactive Shells
  
      Interactive shells "built by hand" (by tools such as IDLE and the Emacs
--- 263,267 ----
  
  
! Resolved Problem:  Simulated Interactive Shells
  
      Interactive shells "built by hand" (by tools such as IDLE and the Emacs
***************
*** 270,274 ****
      own interactive shells to achieve the desired behavior.
  
! XXX interactive shell and -i; interactive shell and -c
  
  Questions and Answers
--- 271,279 ----
      own interactive shells to achieve the desired behavior.
  
!     NOTE:  PEP 264 later addressed this, by adding intelligence to the
!     standard codeop.py.  Simulated shells that don't use the standard
!     library shell helpers can get a similar effect by exploiting the
!     new optional arguments to compile() added by PEP 264.
! 
  
  Questions and Answers