Author: Armin Rigo <[email protected]>
Branch: release-1.13
Changeset: r3309:b175e63b614b
Date: 2019-11-03 07:30 +0100
http://bitbucket.org/cffi/cffi/changeset/b175e63b614b/

Log:    hg merge default

diff --git a/.hgtags b/.hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -22,3 +22,4 @@
 e0c76668ecf5ab1ad005799cfe1b7cb58610f155 v1.12.2
 bf80722dea36237710083315e336c81bc8571fd0 v1.12.3
 17c06e75f54cf5a31865961f0b498f99232a0bc8 v1.13.0
+9cc790d05bc5256eee32fddbe60aadf24f14ce44 v1.13.1
diff --git a/cffi/cparser.py b/cffi/cparser.py
--- a/cffi/cparser.py
+++ b/cffi/cparser.py
@@ -159,9 +159,9 @@
 def _warn_for_non_extern_non_static_global_variable(decl):
     if not decl.storage:
         import warnings
-        warnings.warn("Declaration of global variable '%s' in cdef() should "
-                      "be marked 'extern' for consistency (or possibly "
-                      "'static' in API mode)" % (decl.name,))
+        warnings.warn("Global variable '%s' in cdef(): for consistency "
+                      "with C it should have a storage class specifier "
+                      "(usually 'extern')" % (decl.name,))
 
 def _preprocess(csource):
     # Remove comments.  NOTE: this only work because the cdef() section
diff --git a/doc/source/installation.rst b/doc/source/installation.rst
--- a/doc/source/installation.rst
+++ b/doc/source/installation.rst
@@ -54,11 +54,11 @@
 
 * Checksums of the "source" package version 1.13.1:
 
-   - MD5: ...
+   - MD5: 824ad9f228fbc6ce203c334e2ff4ab8f
 
-   - SHA: ...
+   - SHA: 678dad3a3102ebcbeab8f5f132968afa444f6a54
 
-   - SHA256: ...
+   - SHA256: 558b3afef987cf4b17abd849e7bedf64ee12b28175d564d05b628a0f9355599b
 
 * Or grab the most current version from the `Bitbucket page`_:
   ``hg clone https://bitbucket.org/cffi/cffi``
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to