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

Skip to content

Commit 5e572fd

Browse files
committed
merge with 3.3.5 release repo
2 parents e46abb4 + 92d2d34 commit 5e572fd

7 files changed

Lines changed: 34 additions & 12 deletions

File tree

.hgtags

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,5 @@ c3896275c0f61b2510a6c7e6c458a750359a91b8 v3.3.3
121121
fa92f5f940c6c0d839d7f0611e4b717606504a3c v3.3.4rc1
122122
7ff62415e4263c432c8acf6e424224209211eadb v3.3.4
123123
9ec811df548ed154a9bf9815383a916d6df31b98 v3.3.5rc1
124+
ca5635efe090f78806188ac2758f9948596aa8b2 v3.3.5rc2
125+
62cf4e77f78564714e7ea3d4bf1479ca1fbd0758 v3.3.5

Include/patchlevel.h

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

2525
/* Version as a string */
26-
#define PY_VERSION "3.3.5rc2"
26+
#define PY_VERSION "3.3.5+"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# Updated automatically by the Python release process.
1414
#
1515
#--start constants--
16-
__version__ = "3.3.5rc2"
16+
__version__ = "3.3.5"
1717
#--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.3.5rc2"
1+
IDLE_VERSION = "3.3.5"

Misc/NEWS

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

5+
What's New in Python 3.3.6 release candidate 1?
6+
===============================================
7+
8+
*Release date: XX-XXX-XXXX*
9+
10+
Core and Builtins
11+
-----------------
12+
13+
Library
14+
-------
15+
16+
- Issue #20283: RE pattern methods now accept the string keyword parameters
17+
as documented. The pattern and source keyword parameters are left as
18+
deprecated aliases.
19+
20+
21+
What's New in Python 3.3.5?
22+
===========================
23+
24+
*Release date: 09-Mar-2014*
25+
26+
No changes from release candidate 2.
27+
28+
529
What's New in Python 3.3.5 release candidate 2?
630
===============================================
731

@@ -22,10 +46,6 @@ Core and Builtins
2246
Library
2347
-------
2448

25-
- Issue #20283: RE pattern methods now accept the string keyword parameters
26-
as documented. The pattern and source keyword parameters are left as
27-
deprecated aliases.
28-
2949
- Issue #20778: Fix modulefinder to work with bytecode-only modules.
3050

3151
- Issue #20791: copy.copy() now doesn't make a copy when the input is

Misc/RPM/python-3.3.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.3.5rc2
42+
%define version 3.3.5
4343
%define libvers 3.3
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.3.5 release candidate 2
2-
================================================
1+
This is Python version 3.3.5
2+
============================
33

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

0 commit comments

Comments
 (0)