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
fea7e733
Commit
fea7e733
authored
Feb 11, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Merge heads
parents
6a450210
3f99504c
Changes
15
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
41 additions
and
25 deletions
+41
-25
.hgtags
.hgtags
+1
-0
Doc/library/asyncio-eventloop.rst
Doc/library/asyncio-eventloop.rst
+1
-1
Doc/library/enum.rst
Doc/library/enum.rst
+2
-2
Doc/library/unittest.rst
Doc/library/unittest.rst
+7
-7
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+1
-1
Include/patchlevel.h
Include/patchlevel.h
+3
-3
Lib/asyncio/test_utils.py
Lib/asyncio/test_utils.py
+1
-0
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
+2
-2
Misc/NEWS
Misc/NEWS
+16
-4
Misc/RPM/python-3.4.spec
Misc/RPM/python-3.4.spec
+1
-1
PC/python3.def
PC/python3.def
+1
-0
PC/python34stub.def
PC/python34stub.def
+1
-0
README
README
+2
-2
No files found.
.hgtags
View file @
fea7e733
...
...
@@ -127,3 +127,4 @@ e245b0d7209bb6d0e19316e1e2af1aa9c2139104 v3.4.0a4
3405dc9a6afaa0a06dd1f6f182ec5c998dce6f5f v3.4.0b1
ba32913eb13ec545a46dd0ce18035b6c416f0d78 v3.4.0b2
a97ce3ecc96af79bd2e1ac66ce48d9138e0ca749 v3.4.0b3
5e088cea8660677969113741c1313d570d977e02 v3.4.0rc1
Doc/library/asyncio-eventloop.rst
View file @
fea7e733
...
...
@@ -77,7 +77,7 @@ An event loop policy must implement the following interface:
Create and return a new event loop object according to this policy's rules.
If there's need to set this loop as the event loop of the current context,
:meth`set_event_loop` must be called explicitly.
:meth
:
`set_event_loop` must be called explicitly.
Access to the global loop policy
--------------------------------
...
...
Doc/library/enum.rst
View file @
fea7e733
...
...
@@ -30,7 +30,7 @@ one decorator, :func:`unique`.
.. class:: Enum
Base class for creating enumerated constants. See section
:ref:`Functional API`
for an alternate construction syntax.
`Functional API`_
for an alternate construction syntax.
.. class:: IntEnum
...
...
@@ -421,7 +421,7 @@ The solution is to specify the module name explicitly as follows::
>>> Animals = Enum('Animals', 'ant bee cat dog', module=__name__)
The new pickle protocol 4 also, in some circumstances, relies on
:attr:`
`__qualname__`
` being set to the location where pickle will be able
:attr:`
__qualname__
` being set to the location where pickle will be able
to find the class. For example, if the class was made available in class
SomeData in the global scope::
...
...
Doc/library/unittest.rst
View file @
fea7e733
...
...
@@ -1917,13 +1917,13 @@ Loading and running tests
By default this runner shows :exc:`DeprecationWarning`,
:exc:`PendingDeprecationWarning`, :exc:`ResourceWarning` and
:exc:`ImportWarning` even if they are :ref:`ignored by default
<warning-
ignored>`. Deprecation warnings caused by :ref:`deprecated unittest methods
<deprecated-aliases>` are also special-cased and, when the warning filters
are ``'default'`` or ``'always'``, they will appear only once per-module, in
order to avoid too many warning messages. This behavior can be overridde
n
using the :option:`-Wd` or :option:`-Wa` options and leaving *warnings* to
``None``.
:exc:`ImportWarning` even if they are :ref:`ignored by default
<warning-ignored>`. Deprecation warnings caused by :ref:`deprecated unittest
methods <deprecated-aliases>` are also special-cased and, when the warning
filters are ``'default'`` or ``'always'``, they will appear only once
per-module, in order to avoid too many warning messages. This behavior ca
n
be overridden using the :option:`-Wd` or :option:`-Wa` options and leaving
*warnings* to
``None``.
.. versionchanged:: 3.2
Added the ``warnings`` argument.
...
...
Doc/whatsnew/3.4.rst
View file @
fea7e733
...
...
@@ -1729,7 +1729,7 @@ Changes in the Python API
Changes in the C API
--------------------
* :c:func:`PyEval_EvalFrameEx`, :c:func:`PyObject_Repr
()
, and
* :c:func:`PyEval_EvalFrameEx`, :c:func:`PyObject_Repr
`
, and
:c:func:`PyObject_Str`, along with some other internal C APIs, now include
a debugging assertion that ensures they are not used in situations where
they may silently discard a currently active exception. In cases where
...
...
Include/patchlevel.h
View file @
fea7e733
...
...
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 4
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
BET
A
#define PY_RELEASE_SERIAL
3
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
GAMM
A
#define PY_RELEASE_SERIAL
1
/* Version as a string */
#define PY_VERSION "3.4.0
b3
+"
#define PY_VERSION "3.4.0
rc1
+"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
...
...
Lib/asyncio/test_utils.py
View file @
fea7e733
...
...
@@ -191,6 +191,7 @@ class TestLoop(base_events.BaseEventLoop):
self
.
_gen
=
gen
()
next
(
self
.
_gen
)
self
.
_time
=
0
self
.
_clock_resolution
=
1e-9
self
.
_timers
=
[]
self
.
_selector
=
TestSelector
()
...
...
Lib/distutils/__init__.py
View file @
fea7e733
...
...
@@ -13,5 +13,5 @@ used from a setup script as
# Updated automatically by the Python release process.
#
#--start constants--
__version__
=
"3.4.0
b3
"
__version__
=
"3.4.0
rc1
"
#--end constants--
Lib/idlelib/idlever.py
View file @
fea7e733
IDLE_VERSION
=
"3.4.0
b3
"
IDLE_VERSION
=
"3.4.0
rc1
"
Lib/pydoc_data/topics.py
View file @
fea7e733
This diff is collapsed.
Click to expand it.
Misc/NEWS
View file @
fea7e733
...
...
@@ -2,10 +2,25 @@
Python
News
+++++++++++
What
's New in Python 3.4.0 release candidate 2?
===============================================
Release date: 2014-02-23
Core and Builtins
-----------------
Library
-------
- Issue #19856: shutil.move() failed to move a directory to other directory
on Windows if source name ends with os.altsep.
What'
s
New
in
Python
3.4.0
release
candidate
1
?
===============================================
Release date: 2014-02-
09
Release
date
:
2014
-
02
-
10
Core
and
Builtins
-----------------
...
...
@@ -37,9 +52,6 @@ Core and Builtins
Library
-------
- Issue #19856: shutil.move() failed to move a directory to other directory
on Windows if source name ends with os.altsep.
-
Issue
#
20530
:
The
signatures
for
slot
builtins
have
been
updated
to
reflect
the
fact
that
they
only
accept
positional
-
only
arguments
.
...
...
Misc/RPM/python-3.4.spec
View file @
fea7e733
...
...
@@ -39,7 +39,7 @@
%define name python
#--start constants--
%define version 3.4.0
b3
%define version 3.4.0
rc1
%define libvers 3.4
#--end constants--
%define release 1pydotorg
...
...
PC/python3.def
View file @
fea7e733
...
...
@@ -519,6 +519,7 @@ EXPORTS
PyType_GenericAlloc=python34.PyType_GenericAlloc
PyType_GenericNew=python34.PyType_GenericNew
PyType_GetFlags=python34.PyType_GetFlags
PyType_GetSlot=python34.PyType_GetSlot
PyType_IsSubtype=python34.PyType_IsSubtype
PyType_Modified=python34.PyType_Modified
PyType_Ready=python34.PyType_Ready
...
...
PC/python34stub.def
View file @
fea7e733
...
...
@@ -518,6 +518,7 @@ PyType_FromSpecWithBases
PyType_GenericAlloc
PyType_GenericNew
PyType_GetFlags
PyType_GetSlot
PyType_IsSubtype
PyType_Modified
PyType_Ready
...
...
README
View file @
fea7e733
This is Python version 3.4.0
beta 3
===================================
This is Python version 3.4.0
release candidate 1
===================================
=============
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
2012, 2013, 2014 Python Software Foundation. All rights reserved.
...
...
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