This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Glitches in What's New for beta 1
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, ncoghlan
Priority: normal Keywords:

Created on 2006-06-25 04:09 by ncoghlan, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg28894 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2006-06-25 04:09
PEP 343 writeup
  2.5a2 changed the generator decorator back to
'contextmanager' when the __context__ method was
dropped (without context objects involved, the name
contextfactory didn't make sense any more).

xmlcore vs xml
  The notes about the introduction of xmlcore seem a
little misleading (implying that 'import xml' will fail
on a base 2.5 installation). Isn't the xml namespace a
combination of both xmlcore and PyXML?

wsgiref
  The example should either import make_server from
wsgiref.simple_server, or else call
simple_server.make_server

AST compiler documentation
  People interested in the AST compiler should be
directed towards Brett's writeup in PEP 339.
http://www.python.org/dev/peps/pep-0339/
 
Remove of PyRange_New
  It may be worth noting that you can use
PyObject_Call(PyRange_Type, etc...) instead (as per
recent python-dev discussion).

msg28895 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2006-06-26 12:45
Logged In: YES 
user_id=11375

Suggested changes applied; thanks!
History
Date User Action Args
2022-04-11 14:56:18adminsetgithub: 43547
2006-06-25 04:09:14ncoghlancreate