[Python-checkins] CVS: python/nondist/peps pep-0001.txt,1.4,1.5

Barry Warsaw python-dev@python.org
Mon, 14 Aug 2000 07:48:23 -0700


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

Modified Files:
	pep-0001.txt 
Log Message:
There are now three basic types of PEPs: informational, standards
track, and technical.  The (new) latter type describes internal or
implementation changes that don't have a direct visible effect on the
Python language (e.g. Stackless).


Index: pep-0001.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0001.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** pep-0001.txt	2000/08/08 02:30:55	1.4
--- pep-0001.txt	2000/08/14 14:48:20	1.5
***************
*** 31,38 ****
  Kinds of PEPs
  
!     There are two kinds of PEPs.  A standards track PEP describes a
      new feature for Python.  An informational PEP describes a Python
      design issue, or provides general guidelines or information to the
!     Python community, but does not propose a new feature.
  
  
--- 31,41 ----
  Kinds of PEPs
  
!     There are three kinds of PEPs.  A standards track PEP describes a
      new feature for Python.  An informational PEP describes a Python
      design issue, or provides general guidelines or information to the
!     Python community, but does not propose a new feature.  A technical
!     PEP describes a new implementation or other internal modification
!     that doesn't directly expose new features to the Python
!     programmer.