summaryrefslogtreecommitdiff
path: root/Include/datetime.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-17 20:54:53 +0000
committerBenjamin Peterson <benjamin@python.org>2010-10-17 20:54:53 +0000
commit8f67d0893f7170986b0ad370844318544270cbcc (patch)
tree4aec6cf093d4d042d18d1fadc3ce52765d32bd8d /Include/datetime.h
parent6fb457526cef485d64f4f6744d81cae8c02032b3 (diff)
downloadcpython-git-8f67d0893f7170986b0ad370844318544270cbcc.tar.gz
make hashes always the size of pointers; introduce Py_hash_t #9778
Diffstat (limited to 'Include/datetime.h')
-rw-r--r--Include/datetime.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/datetime.h b/Include/datetime.h
index f472c421dc..2d71fced8d 100644
--- a/Include/datetime.h
+++ b/Include/datetime.h
@@ -34,7 +34,7 @@ extern "C" {
typedef struct
{
PyObject_HEAD
- long hashcode; /* -1 when unknown */
+ Py_hash_t hashcode; /* -1 when unknown */
int days; /* -MAX_DELTA_DAYS <= days <= MAX_DELTA_DAYS */
int seconds; /* 0 <= seconds < 24*3600 is invariant */
int microseconds; /* 0 <= microseconds < 1000000 is invariant */
@@ -51,7 +51,7 @@ typedef struct
*/
#define _PyTZINFO_HEAD \
PyObject_HEAD \
- long hashcode; \
+ Py_hash_t hashcode; \
char hastzinfo; /* boolean flag */
/* No _PyDateTime_BaseTZInfo is allocated; it's just to have something