New submission from Jim Sizelove <[EMAIL PROTECTED]>:
The distinction between integers and long integers has been removed in
Python 3.0. The attached patch file changes the long literals to Python
3.0 integer literals in the Floating Point Arithmetic section of the
tu
Jim Sizelove <[EMAIL PROTECTED]> added the comment:
The conversations that led to the removal of __getitem__ from Exceptions
can be found in issue2291 and issue2379.
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.pytho
New submission from Jim Sizelove <[EMAIL PROTECTED]>:
PEPs 3109 and 3110 describe changes to Exceptions. The attached patch
file makes changes to the tutorial to bring it in line with the changes
to errors and exceptions implemented in Python 3.0.
I'll make a comment about t
New submission from Jim Sizelove <[EMAIL PROTECTED]>:
The Input and Output section of the Python 3.0 tutorial
(http://docs.python.org/dev/3.0/tutorial/inputoutput.html) shows an
example of seeking in a negative direction from the end of a file. I
get an IOError when attempting to r
New submission from Jim Sizelove <[EMAIL PROTECTED]>:
The Input and Output section of the tutorial says: "Reverse quotes (``)
are equivalent to repr(), but they are no longer used in modern Python
code and are removed in future versions of the language." Is now that
future time
New submission from Jim Sizelove <[EMAIL PROTECTED]>:
The zip() function is now a generator in Python 3.0. There is an
example of using the zip() function in the Python 3.0 tutorial,
http://docs.python.org/dev/3.0/tutorial/datastructures.html.
When running the example, I got:
>>&g
New submission from Jim Sizelove <[EMAIL PROTECTED]>:
I decided to learn more about the coming changes in Python 3.0 by
installing the beta and working through the tutorial. I found some
discrepancies between the code examples and the output I got. The
attached patch shows several places