summaryrefslogtreecommitdiff
path: root/Include/structseq.h
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2017-02-04 17:37:00 -0800
committerSteve Dower <steve.dower@microsoft.com>2017-02-04 17:37:00 -0800
commita51d84bfb3b7f82b4b4e22c385cc7966378ae5c2 (patch)
treef09060bdd9bc041fc2942698eb7a46ea77b8e0fd /Include/structseq.h
parent2af0fb8818763f1942666dae0835baeab65340fc (diff)
parentcd72452eb70eeaed8cd39282a2bad320bc922f41 (diff)
downloadcpython-a51d84bfb3b7f82b4b4e22c385cc7966378ae5c2.tar.gz
Merge from 3.6
Diffstat (limited to 'Include/structseq.h')
-rw-r--r--Include/structseq.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/structseq.h b/Include/structseq.h
index af227164c8..e5e5d5c573 100644
--- a/Include/structseq.h
+++ b/Include/structseq.h
@@ -8,13 +8,13 @@ extern "C" {
#endif
typedef struct PyStructSequence_Field {
- char *name;
- char *doc;
+ const char *name;
+ const char *doc;
} PyStructSequence_Field;
typedef struct PyStructSequence_Desc {
- char *name;
- char *doc;
+ const char *name;
+ const char *doc;
struct PyStructSequence_Field *fields;
int n_in_sequence;
} PyStructSequence_Desc;