diff options
author | 2021-02-17 10:56:06 +0200 | |
---|---|---|
committer | 2021-02-17 10:56:06 +0200 | |
commit | 7029874c42f485f86ff1a353593ea526d963bef4 (patch) | |
tree | 7fad0b986ce3c44d189039d019abf66cc918dc60 /lib_pypy/cffi | |
parent | skip test on 32-bit (diff) | |
download | pypy-7029874c42f485f86ff1a353593ea526d963bef4.tar.gz pypy-7029874c42f485f86ff1a353593ea526d963bef4.tar.bz2 pypy-7029874c42f485f86ff1a353593ea526d963bef4.zip |
update to cffi 1.14.5 (using pypy/tool/import_cffi.py and manually fixing too)
Diffstat (limited to 'lib_pypy/cffi')
-rw-r--r-- | lib_pypy/cffi/__init__.py | 4 | ||||
-rw-r--r-- | lib_pypy/cffi/_embedding.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib_pypy/cffi/__init__.py b/lib_pypy/cffi/__init__.py index 644dea74c1..b79c21f91d 100644 --- a/lib_pypy/cffi/__init__.py +++ b/lib_pypy/cffi/__init__.py @@ -5,8 +5,8 @@ from .api import FFI from .error import CDefError, FFIError, VerificationError, VerificationMissing from .error import PkgConfigError -__version__ = "1.14.4" -__version_info__ = (1, 14, 4) +__version__ = "1.14.5" +__version_info__ = (1, 14, 5) # The verifier module file names are based on the CRC32 of a string that # contains the following version number. It may be older than __version__ diff --git a/lib_pypy/cffi/_embedding.h b/lib_pypy/cffi/_embedding.h index cae179acb1..c36d79342d 100644 --- a/lib_pypy/cffi/_embedding.h +++ b/lib_pypy/cffi/_embedding.h @@ -224,7 +224,7 @@ static int _cffi_initialize_python(void) if (f != NULL && f != Py_None) { PyFile_WriteString("\nFrom: " _CFFI_MODULE_NAME - "\ncompiled with cffi version: 1.14.4" + "\ncompiled with cffi version: 1.14.5" "\n_cffi_backend module: ", f); modules = PyImport_GetModuleDict(); mod = PyDict_GetItemString(modules, "_cffi_backend"); |