Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c1928f

Browse files
committed
Merge release branch after 3.2.1rc1.
2 parents 619323c + 4197231 commit 9c1928f

11 files changed

Lines changed: 34 additions & 22 deletions

File tree

.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,4 @@ acf3e24dd0d0dfd1e20c907d696d3da965a8f56f v3.2rc2
8686
18c1f52896501c7ee13b038454a39acb45a87979 v3.2rc3
8787
a222a015e28d8ae9af3899258dc6c15c3d40add0 v3.2
8888
8ffac2337a3323323d02153ac919fd1483176652 v3.2.1b1
89+
cfa9364997c7f2e67b9cbb45c3a5fa3bba4e4999 v3.2.1rc1

Doc/c-api/veryhigh.rst

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,15 @@ the same library that the Python runtime is using.
2727

2828
.. c:function:: int Py_Main(int argc, wchar_t **argv)
2929
30-
The main program for the standard interpreter. This is made
31-
available for programs which embed Python. The *argc* and *argv*
32-
parameters should be prepared exactly as those which are passed to
33-
a C program's :c:func:`main` function (converted to wchar_t
34-
according to the user's locale). It is important to note that the
35-
argument list may be modified (but the contents of the strings
36-
pointed to by the argument list are not). The return value will be
37-
```0``` if the interpreter exits normally (ie, without an
38-
exception), ``1`` if the interpreter exits due to an exception, or
39-
``2`` if the parameter list does not represent a valid Python
40-
command line.
30+
The main program for the standard interpreter. This is made available for
31+
programs which embed Python. The *argc* and *argv* parameters should be
32+
prepared exactly as those which are passed to a C program's :c:func:`main`
33+
function (converted to wchar_t according to the user's locale). It is
34+
important to note that the argument list may be modified (but the contents of
35+
the strings pointed to by the argument list are not). The return value will
36+
be ``0`` if the interpreter exits normally (i.e., without an exception),
37+
``1`` if the interpreter exits due to an exception, or ``2`` if the parameter
38+
list does not represent a valid Python command line.
4139
4240
Note that if an otherwise unhandled :exc:`SystemExit` is raised, this
4341
function will not return ``1``, but exit the process, as long as

Doc/tools/sphinxext/susp-ignored.csv

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,3 +391,14 @@ documenting/markup,864,`,": [""else"" "":"" `suite`]"
391391
documenting/markup,864,`,": [""finally"" "":"" `suite`]"
392392
documenting/markup,864,`,"try2_stmt: ""try"" "":"" `suite`"
393393
documenting/markup,864,`,": ""finally"" "":"" `suite`"
394+
library/pprint,209,::,"'classifiers': ['Development Status :: 4 - Beta',"
395+
library/pprint,209,::,"'Intended Audience :: Developers',"
396+
library/pprint,209,::,"'License :: OSI Approved :: MIT License',"
397+
library/pprint,209,::,"'Natural Language :: English',"
398+
library/pprint,209,::,"'Operating System :: OS Independent',"
399+
library/pprint,209,::,"'Programming Language :: Python',"
400+
library/pprint,209,::,"'Programming Language :: Python :: 2',"
401+
library/pprint,209,::,"'Programming Language :: Python :: 2.6',"
402+
library/pprint,209,::,"'Programming Language :: Python :: 2.7',"
403+
library/pprint,209,::,"'Topic :: Software Development :: Libraries',"
404+
library/pprint,209,::,"'Topic :: Software Development :: Libraries :: Python Modules'],"

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 2
2121
#define PY_MICRO_VERSION 1
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
2323
#define PY_RELEASE_SERIAL 1
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.2.1b1"
26+
#define PY_VERSION "3.2.1rc1"
2727
/*--end constants--*/
2828

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

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.1b1"
18+
__version__ = "3.2.1rc1"
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.1b1"
1+
IDLE_VERSION = "3.2.1rc1"

Lib/pydoc_data/topics.py

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Library
2424
What's New in Python 3.2.1 release candidate 1?
2525
===============================================
2626

27-
*Release date: XX-XXX-2011*
27+
*Release date: 15-May-2011*
2828

2929
Core and Builtins
3030
-----------------

Misc/RPM/python-3.2.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
%define name python
4141
#--start constants--
42-
%define version 3.2.1b1
42+
%define version 3.2.1rc1
4343
%define libvers 3.2
4444
#--end constants--
4545
%define release 1pydotorg

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.2.1 beta 1
2-
===================================
1+
This is Python version 3.2.1 release candidate 1
2+
================================================
33

44
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
55
Python Software Foundation. All rights reserved.

0 commit comments

Comments
 (0)