summaryrefslogtreecommitdiff
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* #4967 fix buggy read()Benjamin Peterson2009-02-281-36/+33
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Fix signed/unsigned mismatch.Raymond Hettinger2009-01-261-1/+1
* clean up ssl.py; expose unwrap and add test for itBill Janssen2008-08-121-0/+40
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-7/+17
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-8/+22
* Renamed PyString to PyBytesChristian Heimes2008-05-261-4/+4
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-6/+6
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-2/+2
* Merged revisions 60350-60363 via svnmerge fromChristian Heimes2008-01-271-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-3/+3
* Merged revisions 59488-59511 via svnmerge fromChristian Heimes2007-12-151-1/+1
* update to fix leak in SSL codeBill Janssen2007-12-141-16/+41
* Reverting revision 59394. We'll sort this out later.Guido van Rossum2007-12-061-59/+12
* Fix the leaks in test_ssl. Issue 1469. Patch by Christian Heimes:Guido van Rossum2007-12-061-12/+59
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-9/+9
* Make read() and certificate() return bytes instead of bytearray instances.Guido van Rossum2007-11-211-31/+23
* get SSL support to work againBill Janssen2007-11-151-130/+198
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-175/+671
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-081-10/+15
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-159/+484
* Return a boolean for statusNeal Norwitz2007-08-261-4/+4
* Use unicodeNeal Norwitz2007-08-251-3/+3
* Change read() on SSL socket to return bytes.Jeremy Hylton2007-08-041-4/+7
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-5/+4
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+28
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-4/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-9/+15
* Try to improve name based on discussion on python-checkins with Jim JewettNeal Norwitz2006-02-131-5/+5
* Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE.Martin v. Löwis2006-02-111-0/+2
* Bug #876637, prevent stack corruption when socket descriptorNeal Norwitz2006-02-071-0/+14
* Fix indentation (whitespace only).Neal Norwitz2006-02-071-3/+3
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add a missing decref -- PyErr_SetObject increfs the 'object'!Michael W. Hudson2004-08-041-0/+1
* [Patch #909007] Enable a bunch of safe bug workarounds in OpenSSL, for compat...Andrew M. Kuchling2004-07-101-0/+1
* [Patch #945642] Fix non-blocking SSL sockets, which blocked on reads/writes i...Andrew M. Kuchling2004-07-101-26/+60
* Make socket.sslerror a subclass of socket.error .Brett Cannon2004-03-231-1/+3
* Patch #803998: Correctly check for error in SSL_write.Martin v. Löwis2003-10-271-2/+3
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Fix SF #754870, SSL crash interpreter when remote side closes during connectNeal Norwitz2003-06-301-1/+2
* Patch #751916: Check for signals, fix some refcounting errors.Martin v. Löwis2003-06-281-2/+13
* Fix compiler warningNeal Norwitz2003-02-021-0/+1
* SF patch 676472 by Geoff Talvola, reviewed by Ben Laurie.Guido van Rossum2003-01-311-13/+65
* Support socket timeout in SSL, by Geoff Talvola.Guido van Rossum2003-01-271-0/+51
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #575827: allow threads inside SSL creation.Martin v. Löwis2002-07-281-4/+19
* staticforward bites the dust.Jeremy Hylton2002-07-171-4/+4
* Repair badly formatted code.Jeremy Hylton2002-07-021-19/+17