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
febd4c67
Commit
febd4c67
authored
Jun 24, 2012
by
Éric Araujo
Browse files
Options
Browse Files
Download
Plain Diff
Branch merge
parents
d2d6f18d
193e3153
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Doc/library/email.headerregistry.rst
Doc/library/email.headerregistry.rst
+1
-1
Doc/whatsnew/3.3.rst
Doc/whatsnew/3.3.rst
+1
-1
Lib/test/test__locale.py
Lib/test/test__locale.py
+1
-1
No files found.
Doc/library/email.headerregistry.rst
View file @
febd4c67
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
necessary by the core developers.
necessary by the core developers.
.. versionadded:: 3.3
.. versionadded:: 3.3
as a :term:`provisional module <provisional package>`
as a :term:`provisional module <provisional package>`
.
Headers are represented by customized subclasses of :class:`str`. The
Headers are represented by customized subclasses of :class:`str`. The
particular class used to represent a given header is determined by the
particular class used to represent a given header is determined by the
...
...
Doc/whatsnew/3.3.rst
View file @
febd4c67
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
This
article
explains
the
new
features
in
Python
3.3
,
compared
to
3.2
.
This
article
explains
the
new
features
in
Python
3.3
,
compared
to
3.2
.
..
note
::
Alph
a
users
should
be
aware
that
this
document
is
currently
in
..
note
::
Bet
a
users
should
be
aware
that
this
document
is
currently
in
draft
form
.
It
will
be
updated
substantially
as
Python
3.3
moves
towards
draft
form
.
It
will
be
updated
substantially
as
Python
3.3
moves
towards
release
,
so
it
's worth checking back even after reading earlier versions.
release
,
so
it
's worth checking back even after reading earlier versions.
...
...
Lib/test/test__locale.py
View file @
febd4c67
...
@@ -12,7 +12,7 @@ from platform import uname
...
@@ -12,7 +12,7 @@ from platform import uname
from
test.support
import
run_unittest
from
test.support
import
run_unittest
if
uname
()[
0
]
==
"Darwin"
:
if
uname
()[
0
]
==
"Darwin"
:
maj
,
min
,
mic
=
[
int
(
part
)
for
part
in
uname
()
.
release
.
split
(
"."
)]
maj
,
min
,
mic
=
[
int
(
part
)
for
part
in
uname
()
[
2
]
.
split
(
"."
)]
if
(
maj
,
min
,
mic
)
<
(
8
,
0
,
0
):
if
(
maj
,
min
,
mic
)
<
(
8
,
0
,
0
):
raise
unittest
.
SkipTest
(
"locale support broken for OS X < 10.4"
)
raise
unittest
.
SkipTest
(
"locale support broken for OS X < 10.4"
)
...
...
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