commit | 74608f8b8aa571089f8170b0d80bae6746b16f28 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Dec 30 05:44:10 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Dec 30 05:44:10 1997 +0000 |
tree | faadca1f384f4bbfdb11c28937ade48ee973ca8c | |
parent | 786205e38547f617103526a7d5a9385c26aa4b4f [diff] |
Oops, big glitch. Charles had put a 1 in the column for argument list type for all functions. However many function call PyArg_Parse() and need a 0. This is so that when they didn't change anything, the can do Py_INCREF(args); return args. Reverted this back. For atof(), there's no reason not to use PyArg_ParseTuple(), so I changed the code (atoi and atol already used that).