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
c6cfd4aa
Commit
c6cfd4aa
authored
Oct 07, 2011
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Plain Diff
Branch merge.
parents
78f89d8c
f394e478
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
Doc/library/ssl.rst
Doc/library/ssl.rst
+2
-2
Misc/NEWS
Misc/NEWS
+4
-0
PC/errmap.h
PC/errmap.h
+1
-0
PC/generrmap.c
PC/generrmap.c
+3
-0
No files found.
Doc/library/ssl.rst
View file @
c6cfd4aa
...
...
@@ -990,8 +990,8 @@ not SSLv2.
Class :class:`socket.socket`
Documentation of underlying :mod:`socket` class
`
Introducing SSL and Certificates using OpenSSL <http://old.pseudonym.org/ssl/wwwj-index.html
>`_
Frederick J. Hirsch
`
TLS (Transport Layer Security) and SSL (Secure Socket Layer) <http://www3.rad.com/networks/applications/secure/tls.htm
>`_
Debby Koren
`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: Certificate-Based Key Management <http://www.ietf.org/rfc/rfc1422>`_
Steve Kent
...
...
Misc/NEWS
View file @
c6cfd4aa
...
...
@@ -10,6 +10,10 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
- Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described
as "The pipe is being closed") is now mapped to POSIX errno EPIPE
(previously EINVAL).
- Issue #12911: Fix memory consumption when calculating the repr() of huge
tuples or lists.
...
...
PC/errmap.h
View file @
c6cfd4aa
...
...
@@ -72,6 +72,7 @@ int winerror_to_errno(int winerror)
case
202
:
return
8
;
case
206
:
return
2
;
case
215
:
return
11
;
case
232
:
return
32
;
case
267
:
return
20
;
case
1816
:
return
12
;
default:
return
EINVAL
;
...
...
PC/generrmap.c
View file @
c6cfd4aa
...
...
@@ -19,6 +19,9 @@ int main()
/* Issue #12802 */
if
(
i
==
ERROR_DIRECTORY
)
errno
=
ENOTDIR
;
/* Issue #13063 */
else
if
(
i
==
ERROR_NO_DATA
)
errno
=
EPIPE
;
else
continue
;
}
...
...
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