Use Python 3 instead of 3.0.

This commit is contained in:
Ezio Melotti 2012-05-03 19:21:40 +03:00
parent e5d3bc4700
commit 510ff54324
76 changed files with 125 additions and 125 deletions

View file

@ -33,7 +33,7 @@ returning data from the target object.
Starting from version 1.6, Python has been providing Python-level buffer
objects and a C-level buffer API so that any built-in or used-defined type can
expose its characteristics. Both, however, have been deprecated because of
various shortcomings, and have been officially removed in Python 3.0 in favour
various shortcomings, and have been officially removed in Python 3 in favour
of a new C-level buffer API and a new Python-level object named
:class:`memoryview`.