Skip to content

Commit 3ebb6b3

Browse files
committed
Bump trunk to 3.3 alpha 0.
1 parent 4a9d447 commit 3ebb6b3

File tree

13 files changed

+39
-30
lines changed

13 files changed

+39
-30
lines changed

Doc/license.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ been GPL-compatible; the table below summarizes the various releases.
110110
+----------------+--------------+------------+------------+-----------------+
111111
| 3.2 | 3.1 | 2011 | PSF | yes |
112112
+----------------+--------------+------------+------------+-----------------+
113+
| 3.3 | 3.2 | 2012 | PSF | yes |
114+
+----------------+--------------+------------+------------+-----------------+
113115

114116
.. note::
115117

Doc/tutorial/interpreter.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ Using the Python Interpreter
1010
Invoking the Interpreter
1111
========================
1212

13-
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.2`
13+
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.3`
1414
on those machines where it is available; putting :file:`/usr/local/bin` in your
1515
Unix shell's search path makes it possible to start it by typing the command ::
1616

17-
python3.2
17+
python3.3
1818

1919
to the shell. [#]_ Since the choice of the directory where the interpreter lives
2020
is an installation option, other places are possible; check with your local
2121
Python guru or system administrator. (E.g., :file:`/usr/local/python` is a
2222
popular alternative location.)
2323

2424
On Windows machines, the Python installation is usually placed in
25-
:file:`C:\\Python32`, though you can change this when you're running the
25+
:file:`C:\\Python33`, though you can change this when you're running the
2626
installer. To add this directory to your path, you can type the following
2727
command into the command prompt in a DOS box::
2828

29-
set path=%path%;C:\python32
29+
set path=%path%;C:\python33
3030

3131
Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
3232
Windows) at the primary prompt causes the interpreter to exit with a zero exit
@@ -94,8 +94,8 @@ with the *secondary prompt*, by default three dots (``...``). The interpreter
9494
prints a welcome message stating its version number and a copyright notice
9595
before printing the first prompt::
9696

97-
$ python3.2
98-
Python 3.2 (py3k, Sep 12 2007, 12:21:02)
97+
$ python3.3
98+
Python 3.3 (py3k, Sep 12 2007, 12:21:02)
9999
[GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2
100100
Type "help", "copyright", "credits" or "license" for more information.
101101
>>>
@@ -148,7 +148,7 @@ Executable Python Scripts
148148
On BSD'ish Unix systems, Python scripts can be made directly executable, like
149149
shell scripts, by putting the line ::
150150

151-
#! /usr/bin/env python3.2
151+
#! /usr/bin/env python3.3
152152

153153
(assuming that the interpreter is on the user's :envvar:`PATH`) at the beginning
154154
of the script and giving the file an executable mode. The ``#!`` must be the

Doc/tutorial/stdlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ operating system::
1515

1616
>>> import os
1717
>>> os.getcwd() # Return the current working directory
18-
'C:\\Python31'
18+
'C:\\Python33'
1919
>>> os.chdir('/server/accesslogs') # Change current working directory
2020
>>> os.system('mkdir today') # Run the command mkdir in the system shell
2121
0

Doc/tutorial/stdlib2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ applications include caching objects that are expensive to create::
271271
Traceback (most recent call last):
272272
File "<stdin>", line 1, in <module>
273273
d['primary'] # entry was automatically removed
274-
File "C:/python31/lib/weakref.py", line 46, in __getitem__
274+
File "C:/python33/lib/weakref.py", line 46, in __getitem__
275275
o = self.data[key]()
276276
KeyError: 'primary'
277277

Include/patchlevel.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
/* Version parsed out into numeric values */
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
20-
#define PY_MINOR_VERSION 2
20+
#define PY_MINOR_VERSION 3
2121
#define PY_MICRO_VERSION 0
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.2"
26+
#define PY_VERSION "3.3a0"
2727
/*--end constants--*/
2828

2929
/* Subversion Revision number of this file (not of the repository) */

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ the various releases.
6969
3.1.1 3.1 2009 PSF yes
7070
3.1.2 3.1 2010 PSF yes
7171
3.2 3.1 2011 PSF yes
72+
3.3 3.2 2012 PSF yes
7273

7374
Footnotes:
7475

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
# Updated automatically by the Python release process.
1616
#
1717
#--start constants--
18-
__version__ = "3.2"
18+
__version__ = "3.3a0"
1919
#--end constants--

Lib/idlelib/idlever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
IDLE_VERSION = "3.2"
1+
IDLE_VERSION = "3.3a0"

Misc/NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Python News
33
+++++++++++
44

5+
What's New in Python 3.3 Alpha 1?
6+
=================================
7+
8+
*Release date: XX-XXX-20XX*
9+
10+
511
What's New in Python 3.2?
612
=========================
713

Misc/RPM/python-3.3.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
%define name python
4141
#--start constants--
42-
%define version 3.2
43-
%define libvers 3.2
42+
%define version 3.3a0
43+
%define libvers 3.3
4444
#--end constants--
4545
%define release 1pydotorg
4646
%define __prefix /usr

0 commit comments

Comments
 (0)