diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-11 20:03:41 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-11 20:03:41 -0800 |
commit | 64209e1303481488925bb39bcc63feb186d643f6 (patch) | |
tree | 33cceff0942f207223c0f62f899c34af7912db55 | |
parent | 089a860f2d3f0ac923fc3f78190055990a940e2a (diff) | |
parent | e1e8e561cc54d66b9fbb5ccf436830b0ceeb1474 (diff) | |
download | cryptography-64209e1303481488925bb39bcc63feb186d643f6.tar.gz cryptography-64209e1303481488925bb39bcc63feb186d643f6.tar.bz2 cryptography-64209e1303481488925bb39bcc63feb186d643f6.zip |
Merge pull request #465 from reaperhulk/comment-fix
Remove comment that's no longer needed
-rw-r--r-- | cryptography/hazmat/bindings/utils.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cryptography/hazmat/bindings/utils.py b/cryptography/hazmat/bindings/utils.py index 9cc05506..b8253483 100644 --- a/cryptography/hazmat/bindings/utils.py +++ b/cryptography/hazmat/bindings/utils.py @@ -50,9 +50,6 @@ def build_ffi(module_prefix, modules, pre_include, post_include, libraries): includes.append(module.INCLUDES) customizations.append(module.CUSTOMIZATIONS) - # loop over the functions & macros after declaring all the types - # so we can set interdependent types in different files and still - # have them all defined before we parse the funcs & macros ffi.cdef("\n".join(types + functions + macros)) # We include functions here so that if we got any of their definitions |