summaryrefslogtreecommitdiff
path: root/Python/random.c
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2016-05-27 12:56:41 -0600
committerEric Snow <ericsnowcurrently@gmail.com>2016-05-27 12:56:41 -0600
commit1f1268c0bc93629b7abc16d8af9cf997c32a947b (patch)
tree39ee4dfe533b80ba355fc850ca5de5bc85c09ec0 /Python/random.c
parentf9990315cdea1d35808ed89f11a4fe388944553e (diff)
parent3bd347c543f3849bc5c70f7c07aa02bb204d3060 (diff)
downloadcpython-1f1268c0bc93629b7abc16d8af9cf997c32a947b.tar.gz
Issue #27138: Fix the doc comment for FileFinder.find_spec().
Diffstat (limited to 'Python/random.c')
-rw-r--r--Python/random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/random.c b/Python/random.c
index 79157b8b6f..839d7ad991 100644
--- a/Python/random.c
+++ b/Python/random.c
@@ -386,7 +386,7 @@ _PyRandom_Init(void)
char *env;
unsigned char *secret = (unsigned char *)&_Py_HashSecret.uc;
Py_ssize_t secret_size = sizeof(_Py_HashSecret_t);
- assert(secret_size == sizeof(_Py_HashSecret.uc));
+ Py_BUILD_ASSERT(sizeof(_Py_HashSecret_t) == sizeof(_Py_HashSecret.uc));
if (_Py_HashSecret_Initialized)
return;