Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3ebb6b36
Commit
3ebb6b36
authored
Feb 20, 2011
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump trunk to 3.3 alpha 0.
parent
4a9d447a
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
39 additions
and
30 deletions
+39
-30
Doc/license.rst
Doc/license.rst
+2
-0
Doc/tutorial/interpreter.rst
Doc/tutorial/interpreter.rst
+7
-7
Doc/tutorial/stdlib.rst
Doc/tutorial/stdlib.rst
+1
-1
Doc/tutorial/stdlib2.rst
Doc/tutorial/stdlib2.rst
+1
-1
Include/patchlevel.h
Include/patchlevel.h
+3
-3
LICENSE
LICENSE
+1
-0
Lib/distutils/__init__.py
Lib/distutils/__init__.py
+1
-1
Lib/idlelib/idlever.py
Lib/idlelib/idlever.py
+1
-1
Misc/NEWS
Misc/NEWS
+6
-0
Misc/RPM/python-3.3.spec
Misc/RPM/python-3.3.spec
+2
-2
README
README
+2
-2
configure
configure
+11
-11
configure.in
configure.in
+1
-1
No files found.
Doc/license.rst
View file @
3ebb6b36
...
...
@@ -110,6 +110,8 @@ been GPL-compatible; the table below summarizes the various releases.
+----------------+--------------+------------+------------+-----------------+
| 3.2 | 3.1 | 2011 | PSF | yes |
+----------------+--------------+------------+------------+-----------------+
| 3.3 | 3.2 | 2012 | PSF | yes |
+----------------+--------------+------------+------------+-----------------+
.. note::
...
...
Doc/tutorial/interpreter.rst
View file @
3ebb6b36
...
...
@@ -10,11 +10,11 @@ Using the Python Interpreter
Invoking the Interpreter
========================
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.
2
`
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.
3
`
on those machines where it is available; putting :file:`/usr/local/bin` in your
Unix shell's search path makes it possible to start it by typing the command ::
python3.
2
python3.
3
to the shell. [#]_ Since the choice of the directory where the interpreter lives
is an installation option, other places are possible; check with your local
...
...
@@ -22,11 +22,11 @@ Python guru or system administrator. (E.g., :file:`/usr/local/python` is a
popular alternative location.)
On Windows machines, the Python installation is usually placed in
:file:`C:\\Python3
2
`, though you can change this when you're running the
:file:`C:\\Python3
3
`, though you can change this when you're running the
installer. To add this directory to your path, you can type the following
command into the command prompt in a DOS box::
set path=%path%;C:\python3
2
set path=%path%;C:\python3
3
Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
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
prints a welcome message stating its version number and a copyright notice
before printing the first prompt::
$ python3.
2
Python 3.
2
(py3k, Sep 12 2007, 12:21:02)
$ python3.
3
Python 3.
3
(py3k, Sep 12 2007, 12:21:02)
[GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
...
...
@@ -148,7 +148,7 @@ Executable Python Scripts
On BSD'ish Unix systems, Python scripts can be made directly executable, like
shell scripts, by putting the line ::
#! /usr/bin/env python3.
2
#! /usr/bin/env python3.
3
(assuming that the interpreter is on the user's :envvar:`PATH`) at the beginning
of the script and giving the file an executable mode. The ``#!`` must be the
...
...
Doc/tutorial/stdlib.rst
View file @
3ebb6b36
...
...
@@ -15,7 +15,7 @@ operating system::
>>> import os
>>> os.getcwd() # Return the current working directory
'C:\\Python3
1
'
'C:\\Python3
3
'
>>> os.chdir('/server/accesslogs') # Change current working directory
>>> os.system('mkdir today') # Run the command mkdir in the system shell
0
...
...
Doc/tutorial/stdlib2.rst
View file @
3ebb6b36
...
...
@@ -271,7 +271,7 @@ applications include caching objects that are expensive to create::
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
d['primary'] # entry was automatically removed
File "C:/python3
1
/lib/weakref.py", line 46, in __getitem__
File "C:/python3
3
/lib/weakref.py", line 46, in __getitem__
o = self.data[key]()
KeyError: 'primary'
...
...
Include/patchlevel.h
View file @
3ebb6b36
...
...
@@ -17,13 +17,13 @@
/* Version parsed out into numeric values */
/*--start constants--*/
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION
2
#define PY_MINOR_VERSION
3
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
FINAL
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
ALPHA
#define PY_RELEASE_SERIAL 0
/* Version as a string */
#define PY_VERSION "3.
2
"
#define PY_VERSION "3.
3a0
"
/*--end constants--*/
/* Subversion Revision number of this file (not of the repository) */
...
...
LICENSE
View file @
3ebb6b36
...
...
@@ -69,6 +69,7 @@ the various releases.
3.1.1 3.1 2009 PSF yes
3.1.2 3.1 2010 PSF yes
3.2 3.1 2011 PSF yes
3.3 3.2 2012 PSF yes
Footnotes:
...
...
Lib/distutils/__init__.py
View file @
3ebb6b36
...
...
@@ -15,5 +15,5 @@ __revision__ = "$Id$"
# Updated automatically by the Python release process.
#
#--start constants--
__version__
=
"3.
2
"
__version__
=
"3.
3a0
"
#--end constants--
Lib/idlelib/idlever.py
View file @
3ebb6b36
IDLE_VERSION
=
"3.
2
"
IDLE_VERSION
=
"3.
3a0
"
Misc/NEWS
View file @
3ebb6b36
...
...
@@ -2,6 +2,12 @@
Python News
+++++++++++
What's New in Python 3.3 Alpha 1?
=================================
*Release date: XX-XXX-20XX*
What's New in Python 3.2?
=========================
...
...
Misc/RPM/python-3.3.spec
View file @
3ebb6b36
...
...
@@ -39,8 +39,8 @@
%define name python
#--start constants--
%define version 3.
2
%define libvers 3.
2
%define version 3.
3a0
%define libvers 3.
3
#--end constants--
%define release 1pydotorg
%define __prefix /usr
...
...
README
View file @
3ebb6b36
This is Python version 3.
2
==========================
This is Python version 3.
3 alpha 0
==========================
========
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Python Software Foundation. All rights reserved.
...
...
configure
View file @
3ebb6b36
#! /bin/sh
# From configure.in Revision: 884
3
0 .
# From configure.in Revision: 884
4
0 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for python 3.
2
.
# Generated by GNU Autoconf 2.68 for python 3.
3
.
#
# Report bugs to <http://bugs.python.org/>.
#
...
...
@@ -561,8 +561,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'python'
PACKAGE_TARNAME
=
'python'
PACKAGE_VERSION
=
'3.
2
'
PACKAGE_STRING
=
'python 3.
2
'
PACKAGE_VERSION
=
'3.
3
'
PACKAGE_STRING
=
'python 3.
3
'
PACKAGE_BUGREPORT
=
'http://bugs.python.org/'
PACKAGE_URL
=
''
...
...
@@ -1317,7 +1317,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures python 3.
2
to adapt to many kinds of systems.
\`
configure' configures python 3.
3
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1378,7 +1378,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of python 3.
2
:"
;;
short
|
recursive
)
echo
"Configuration of python 3.
3
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1516,7 +1516,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
python configure 3.
2
python configure 3.
3
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
...
...
@@ -2347,7 +2347,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by python
$as_me
3.
2
, which was
It was created by python
$as_me
3.
3
, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0
$@
...
...
@@ -2714,7 +2714,7 @@ rm confdefs.h
mv
confdefs.h.new confdefs.h
VERSION
=
3.
2
VERSION
=
3.
3
# Version number of Python's own shared library file.
...
...
@@ -14311,7 +14311,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by python
$as_me
3.
2
, which was
This file was extended by python
$as_me
3.
3
, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -14373,7 +14373,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
python config.status 3.
2
python config.status 3.
3
configured by
$0
, generated by GNU Autoconf 2.68,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
configure.in
View file @
3ebb6b36
...
...
@@ -3,7 +3,7 @@ dnl * Please run autoreconf to test your changes! *
dnl ***********************************************
# Set VERSION so we only need to edit in one place (i.e., here)
m4_define(PYTHON_VERSION, 3.
2
)
m4_define(PYTHON_VERSION, 3.
3
)
dnl Some m4 magic to ensure that the configure script is generated
dnl by the correct autoconf version.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment