Skip to content

Commit 2fd4abe

Browse files
committed
merge with 3.2 branch
2 parents 9a411ce + 11692ac commit 2fd4abe

7 files changed

Lines changed: 11 additions & 8 deletions

File tree

.hgtags

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ c860feaa348d663e598986894ee4680480577e15 v3.2.2rc1
9999
7085403daf439adb3f9e70ef13f6bedb1c447376 v3.2.3rc1
100100
428f05cb7277e1d42bb9dd8d1af6b6270ebc6112 v3.2.3rc2
101101
3d0686d90f55a78f96d9403da2c52dc2411419d0 v3.2.3
102+
b2cb7bc1edb8493c0a78f9331eae3e8fba6a881d v3.2.4rc1
103+
1e10bdeabe3de02f038a63c001911561ac1d13a7 v3.2.4
102104
f1a9a6505731714f0e157453ff850e3b71615c45 v3.3.0a1
103105
2f69db52d6de306cdaef0a0cc00cc823fb350b01 v3.3.0a2
104106
0b53b70a40a00013505eb35e3660057b62be77be v3.3.0a3

Doc/howto/logging-cookbook.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1633,7 +1633,7 @@ UTF-8, then you need to do the following:
16331633

16341634
'ASCII section\ufeffUnicode section'
16351635

1636-
The Unicode code point ``'\ufeff'``, when encoded using UTF-8, will be
1636+
The Unicode code point U+FEFF, when encoded using UTF-8, will be
16371637
encoded as a UTF-8 BOM -- the byte-string ``b'\xef\xbb\xbf'``.
16381638

16391639
#. Replace the ASCII section with whatever placeholders you like, but make sure

Doc/license.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ been GPL-compatible; the table below summarizes the various releases.
120120
+----------------+--------------+------------+------------+-----------------+
121121
| 3.2.3 | 3.2.2 | 2012 | PSF | yes |
122122
+----------------+--------------+------------+------------+-----------------+
123+
| 3.2.4 | 3.2.3 | 2013 | PSF | yes |
124+
+----------------+--------------+------------+------------+-----------------+
123125
| 3.3.0 | 3.2 | 2012 | PSF | yes |
124126
+----------------+--------------+------------+------------+-----------------+
125127

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ the various releases.
7474
3.2.1 3.2 2011 PSF yes
7575
3.2.2 3.2.1 2011 PSF yes
7676
3.2.3 3.2.2 2012 PSF yes
77+
3.2.4 3.2.3 2013 PSF yes
7778
3.3.0 3.2 2012 PSF yes
7879

7980
Footnotes:

Lib/idlelib/NEWS.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ What's New in IDLE 3.3.1?
1818
What's New in IDLE 3.3.0?
1919
=========================
2020

21+
- Issue #17625: Close the replace dialog after it is used.
22+
2123
- Issue #7163: Propagate return value of sys.stdout.write.
2224

2325
- Issue #15318: Prevent writing to sys.stdin.
@@ -874,7 +876,3 @@ What's New in IDLEfork 0.9 Alpha 1?
874876
Refer to HISTORY.txt for additional information on earlier releases.
875877
--------------------------------------------------------------------
876878

877-
878-
879-
880-

PC/python_nt.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ BEGIN
6161
VALUE "FileDescription", "Python Core\0"
6262
VALUE "FileVersion", PYTHON_VERSION
6363
VALUE "InternalName", "Python DLL\0"
64-
VALUE "LegalCopyright", "Copyright � 2001-2012 Python Software Foundation. Copyright � 2000 BeOpen.com. Copyright � 1995-2001 CNRI. Copyright � 1991-1995 SMC.\0"
64+
VALUE "LegalCopyright", "Copyright � 2001-2013 Python Software Foundation. Copyright � 2000 BeOpen.com. Copyright � 1995-2001 CNRI. Copyright � 1991-1995 SMC.\0"
6565
VALUE "OriginalFilename", PYTHON_DLL_NAME "\0"
6666
VALUE "ProductName", "Python\0"
6767
VALUE "ProductVersion", PYTHON_VERSION

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ See PEP 398 for release details: http://www.python.org/dev/peps/pep-0398/
167167
Copyright and License Information
168168
---------------------------------
169169

170-
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
171-
Python Software Foundation. All rights reserved.
170+
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
171+
2012, 2013 Python Software Foundation. All rights reserved.
172172

173173
Copyright (c) 2000 BeOpen.com. All rights reserved.
174174

0 commit comments

Comments
 (0)