This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ssl wrapper: add makefile() method
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: janssen Nosy List: janssen, vstinner
Priority: normal Keywords:

Created on 2008-10-13 23:44 by vstinner, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ssl_makefile.py vstinner, 2008-10-13 23:44
Messages (2)
msg74714 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2008-10-13 23:44
ssl module of Python 2.6 has a makefile() method whereas Python3 has 
not. Attached patch fix this issue. There a just a difference between 
Python2 and Python3 makefile() method: Python3 has not bufsize 
optional argument because SocketIO() is unbuffered.
msg74719 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2008-10-14 00:55
Ooops, ssl already has a makefile() method from socket object! I was 
confused because of the Python 2.6 version of socket module...
History
Date User Action Args
2022-04-11 14:56:40adminsetgithub: 48369
2008-10-14 00:55:30vstinnersetstatus: open -> closed
resolution: not a bug
messages: + msg74719
2008-10-14 00:17:07benjamin.petersonsetassignee: janssen
nosy: + janssen
2008-10-13 23:44:54vstinnercreate