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
9c1928f0
Commit
9c1928f0
authored
May 21, 2011
by
Georg Brandl
Browse files
Options
Browse Files
Download
Plain Diff
Merge release branch after 3.2.1rc1.
parents
619323c6
41972316
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
34 additions
and
22 deletions
+34
-22
.hgtags
.hgtags
+1
-0
Doc/c-api/veryhigh.rst
Doc/c-api/veryhigh.rst
+9
-11
Doc/tools/sphinxext/susp-ignored.csv
Doc/tools/sphinxext/susp-ignored.csv
+11
-0
Include/patchlevel.h
Include/patchlevel.h
+2
-2
Lib/distutils/__init__.py
Lib/distutils/__init__.py
+1
-1
Lib/idlelib/idlever.py
Lib/idlelib/idlever.py
+1
-1
Lib/pydoc_data/topics.py
Lib/pydoc_data/topics.py
+3
-3
Misc/NEWS
Misc/NEWS
+1
-1
Misc/RPM/python-3.2.spec
Misc/RPM/python-3.2.spec
+1
-1
README
README
+2
-2
Tools/msi/uuids.py
Tools/msi/uuids.py
+2
-0
No files found.
.hgtags
View file @
9c1928f0
...
...
@@ -86,3 +86,4 @@ acf3e24dd0d0dfd1e20c907d696d3da965a8f56f v3.2rc2
18c1f52896501c7ee13b038454a39acb45a87979 v3.2rc3
a222a015e28d8ae9af3899258dc6c15c3d40add0 v3.2
8ffac2337a3323323d02153ac919fd1483176652 v3.2.1b1
cfa9364997c7f2e67b9cbb45c3a5fa3bba4e4999 v3.2.1rc1
Doc/c-api/veryhigh.rst
View file @
9c1928f0
...
...
@@ -27,17 +27,15 @@ the same library that the Python runtime is using.
.. c:function:: int Py_Main(int argc, wchar_t **argv)
The main program for the standard interpreter. This is made
available for programs which embed Python. The *argc* and *argv*
parameters should be prepared exactly as those which are passed to
a C program's :c:func:`main` function (converted to wchar_t
according to the user's locale). It is important to note that the
argument list may be modified (but the contents of the strings
pointed to by the argument list are not). The return value will be
```0``` if the interpreter exits normally (ie, without an
exception), ``1`` if the interpreter exits due to an exception, or
``2`` if the parameter list does not represent a valid Python
command line.
The main program for the standard interpreter. This is made available for
programs which embed Python. The *argc* and *argv* parameters should be
prepared exactly as those which are passed to a C program's :c:func:`main`
function (converted to wchar_t according to the user's locale). It is
important to note that the argument list may be modified (but the contents of
the strings pointed to by the argument list are not). The return value will
be ``0`` if the interpreter exits normally (i.e., without an exception),
``1`` if the interpreter exits due to an exception, or ``2`` if the parameter
list does not represent a valid Python command line.
Note that if an otherwise unhandled :exc:`SystemExit` is raised, this
function will not return ``1``, but exit the process, as long as
...
...
Doc/tools/sphinxext/susp-ignored.csv
View file @
9c1928f0
...
...
@@ -391,3 +391,14 @@ documenting/markup,864,`,": [""else"" "":"" `suite`]"
documenting/markup,864,`,": [""finally"" "":"" `suite`]"
documenting/markup,864,`,"try2_stmt: ""try"" "":"" `suite`"
documenting/markup,864,`,": ""finally"" "":"" `suite`"
library/pprint,209,::,"'classifiers': ['Development Status :: 4 - Beta',"
library/pprint,209,::,"'Intended Audience :: Developers',"
library/pprint,209,::,"'License :: OSI Approved :: MIT License',"
library/pprint,209,::,"'Natural Language :: English',"
library/pprint,209,::,"'Operating System :: OS Independent',"
library/pprint,209,::,"'Programming Language :: Python',"
library/pprint,209,::,"'Programming Language :: Python :: 2',"
library/pprint,209,::,"'Programming Language :: Python :: 2.6',"
library/pprint,209,::,"'Programming Language :: Python :: 2.7',"
library/pprint,209,::,"'Topic :: Software Development :: Libraries',"
library/pprint,209,::,"'Topic :: Software Development :: Libraries :: Python Modules'],"
Include/patchlevel.h
View file @
9c1928f0
...
...
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 2
#define PY_MICRO_VERSION 1
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
BET
A
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
GAMM
A
#define PY_RELEASE_SERIAL 1
/* Version as a string */
#define PY_VERSION "3.2.1
b
1"
#define PY_VERSION "3.2.1
rc
1"
/*--end constants--*/
/* Subversion Revision number of this file (not of the repository). Empty
...
...
Lib/distutils/__init__.py
View file @
9c1928f0
...
...
@@ -15,5 +15,5 @@ __revision__ = "$Id$"
# Updated automatically by the Python release process.
#
#--start constants--
__version__
=
"3.2.1
b
1"
__version__
=
"3.2.1
rc
1"
#--end constants--
Lib/idlelib/idlever.py
View file @
9c1928f0
IDLE_VERSION
=
"3.2.1
b
1"
IDLE_VERSION
=
"3.2.1
rc
1"
Lib/pydoc_data/topics.py
View file @
9c1928f0
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Misc/NEWS
View file @
9c1928f0
...
...
@@ -24,7 +24,7 @@ Library
What's New in Python 3.2.1 release candidate 1?
===============================================
*Release date:
XX-XXX
-2011*
*Release date:
15-May
-2011*
Core and Builtins
-----------------
...
...
Misc/RPM/python-3.2.spec
View file @
9c1928f0
...
...
@@ -39,7 +39,7 @@
%define name python
#--start constants--
%define version 3.2.1
b
1
%define version 3.2.1
rc
1
%define libvers 3.2
#--end constants--
%define release 1pydotorg
...
...
README
View file @
9c1928f0
This is Python version 3.2.1
beta
1
===================================
This is Python version 3.2.1
release candidate
1
===================================
=============
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Python Software Foundation. All rights reserved.
...
...
Tools/msi/uuids.py
View file @
9c1928f0
...
...
@@ -87,4 +87,6 @@ product_codes = {
'3.2.122'
:
'{4f3edfa6-cf70-469a-825f-e1206aa7f412}'
,
# 3.2rc2
'3.2.123'
:
'{90c673d7-8cfd-4969-9816-f7d70bad87f3}'
,
# 3.2rc3
'3.2.150'
:
'{b2042d5e-986d-44ec-aee3-afe4108ccc93}'
,
# 3.2.0
'3.2.1121'
:
'{4f90de4a-83dd-4443-b625-ca130ff361dd}'
,
# 3.2.1rc1
'3.2.1150'
:
'{34b2530c-6349-4292-9dc3-60bda4aed93c}'
,
# 3.2.1
}
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