~ubuntu-branches/ubuntu/karmic/python3.0/karmic

« back to all changes in this revision

Viewing changes to Doc/whatsnew/2.1.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-16 17:18:23 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090216171823-1d5cm5qnnjvmnzzm
Tags: 3.0.1-0ubuntu1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
****************************
2
 
  What's New in Python 2.1  
 
2
  What's New in Python 2.1
3
3
****************************
4
4
 
5
5
:Author: A.M. Kuchling
98
98
   x = 1
99
99
   def f():
100
100
       # The next line is a syntax error
101
 
       exec 'x=2'  
 
101
       exec 'x=2'
102
102
       def g():
103
103
           return x
104
104