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

Skip to content

Commit 2ce95d7

Browse files
committed
Merge from 3.4.2 release head back into 3.4 mainline.
2 parents deb7bf1 + adeb140 commit 2ce95d7

File tree

11 files changed

+99
-12619
lines changed

11 files changed

+99
-12619
lines changed

.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,4 @@ a300712ed38c9a242b736c44e806caea25a6dc05 v3.4.0rc2
137137
c67a19e11a7191baf30f313bf55e2e0b6c6f574e v3.4.1rc1
138138
c0e311e010fcb5bae8d87ca22051cd0845ea0ca0 v3.4.1
139139
8711a09513848cfc48c689d983495ee64f4668ca v3.4.2rc1
140+
ab2c023a9432f16652e89c404bbc84aa91bf55af v3.4.2

Doc/library/stdtypes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,7 @@ expression support in the :mod:`re` module).
18641864
For example::
18651865

18661866
>>> 'ab c\n\nde fg\rkl\r\n'.splitlines()
1867-
['ab c', '', 'de fg', 'kl']``
1867+
['ab c', '', 'de fg', 'kl']
18681868
>>> 'ab c\n\nde fg\rkl\r\n'.splitlines(keepends=True)
18691869
['ab c\n', '\n', 'de fg\r', 'kl\r\n']
18701870

@@ -2932,7 +2932,7 @@ place, and instead produce new objects.
29322932
For example::
29332933

29342934
>>> b'ab c\n\nde fg\rkl\r\n'.splitlines()
2935-
[b'ab c', b'', b'de fg', b'kl']``
2935+
[b'ab c', b'', b'de fg', b'kl']
29362936
>>> b'ab c\n\nde fg\rkl\r\n'.splitlines(keepends=True)
29372937
[b'ab c\n', b'\n', b'de fg\r', b'kl\r\n']
29382938

Doc/tools/susp-ignored.csv

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,6 @@ whatsnew/2.4,,:System,
256256
whatsnew/2.5,,:memory,:memory:
257257
whatsnew/2.5,,:step,[start:stop:step]
258258
whatsnew/2.5,,:stop,[start:stop:step]
259-
whatsnew/2.7,1619,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"
260-
whatsnew/2.7,1619,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
261-
whatsnew/2.7,735,:Sunday,'2009:4:Sunday'
262-
whatsnew/2.7,862,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
263-
whatsnew/2.7,862,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
264259
whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
265260
whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
266261
whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
@@ -282,3 +277,8 @@ whatsnew/changelog,,:PythonCmd,"With Tk < 8.5 _tkinter.c:PythonCmd() raised Unic
282277
whatsnew/changelog,,::,": Fix FTP tests for IPv6, bind to ""::1"" instead of ""localhost""."
283278
whatsnew/changelog,,::,": Use ""127.0.0.1"" or ""::1"" instead of ""localhost"" as much as"
284279
whatsnew/changelog,,:password,user:password
280+
whatsnew/2.7,780,:Sunday,'2009:4:Sunday'
281+
whatsnew/2.7,907,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
282+
whatsnew/2.7,907,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
283+
whatsnew/2.7,1657,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
284+
whatsnew/2.7,1657,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"

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 4
2121
#define PY_MICRO_VERSION 2
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
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.4.2rc1+"
26+
#define PY_VERSION "3.4.2+"
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.4.2rc1"
16+
__version__ = "3.4.2"
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.4.2rc1"
1+
IDLE_VERSION = "3.4.2"

Lib/pydoc_data/topics.py

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

Misc/NEWS

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ Python News
33
+++++++++++
44

55

6-
What's New in Python 3.4.3?
7-
===========================
6+
What's New in Python 3.4.3rc1?
7+
==============================
8+
9+
Release date: TBA
810

911
Core and Builtins
1012
-----------------

Misc/RPM/python-3.4.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.4.2rc1
42+
%define version 3.4.2
4343
%define libvers 3.4
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.4.2rc1
2-
===============================
1+
This is Python version 3.4.2
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.

Tools/msi/msi.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ def add_files(db):
11581158
for f in ['i18n', 'pynche', 'Scripts']:
11591159
lib = PyDirectory(db, cab, tooldir, f, f, "%s|%s" % (tooldir.make_short(f), f))
11601160
lib.glob("*.py")
1161-
lib.glob("*.pyw", exclude=['pydocgui.pyw'])
1161+
lib.glob("*.pyw")
11621162
lib.remove_pyc()
11631163
lib.glob("*.txt")
11641164
if f == "pynche":
@@ -1170,9 +1170,6 @@ def add_files(db):
11701170
lib.add_file("2to3.py", src="2to3")
11711171
lib.add_file("pydoc3.py", src="pydoc3")
11721172
lib.add_file("pyvenv.py", src="pyvenv")
1173-
if have_tcl:
1174-
lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw")
1175-
lib.add_file("pydocgui.pyw")
11761173
# Add documentation
11771174
htmlfiles.set_current()
11781175
lib = PyDirectory(db, cab, root, "Doc", "Doc", "DOC|Doc")

0 commit comments

Comments
 (0)