[pypy-svn] r31261 - pypy/dist/pypy/module/_ssl

rhymes at codespeak.net rhymes at codespeak.net
Fri Aug 11 14:23:29 CEST 2006


Author: rhymes
Date: Fri Aug 11 14:23:28 2006
New Revision: 31261

Modified:
   pypy/dist/pypy/module/_ssl/ssl.py
Log:
ext. compiler needs an explicit list of _fields_ also if empty. step forward to compilation

Modified: pypy/dist/pypy/module/_ssl/ssl.py
==============================================================================
--- pypy/dist/pypy/module/_ssl/ssl.py	(original)
+++ pypy/dist/pypy/module/_ssl/ssl.py	Fri Aug 11 14:23:28 2006
@@ -349,6 +349,7 @@
 BIGNUM = bignum_st
 class bignum_ctx(Structure):
     pass
+bignum_ctx._fields_ = []
 BN_CTX = bignum_ctx
 class bn_blinding_st(Structure):
     pass
@@ -519,6 +520,7 @@
 DH_METHOD = dh_method
 class engine_st(Structure):
     pass
+engine_st._fields_ = []
 ENGINE = engine_st
 dh_st._fields_ = [
     ('pad', c_int),
@@ -1705,6 +1707,7 @@
 X509_CERT_AUX = x509_cert_aux_st
 class AUTHORITY_KEYID_st(Structure):
     pass
+AUTHORITY_KEYID_st._fields_ = []
 x509_st._fields_ = [
     ('cert_info', POINTER(X509_CINF)),
     ('sig_alg', POINTER(X509_ALGOR)),



More information about the Pypy-commit mailing list