summaryrefslogtreecommitdiffstats
path: root/Include/internal
diff options
context:
space:
mode:
Diffstat (limited to 'Include/internal')
-rw-r--r--Include/internal/pycore_traceback.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/Include/internal/pycore_traceback.h b/Include/internal/pycore_traceback.h
index 1f09241..169e99b 100644
--- a/Include/internal/pycore_traceback.h
+++ b/Include/internal/pycore_traceback.h
@@ -76,15 +76,11 @@ PyAPI_FUNC(void) _Py_DumpDecimal(
int fd,
unsigned long value);
-/* Format an integer as hexadecimal into the file descriptor fd with at least
- width digits.
-
- The maximum width is sizeof(unsigned long)*2 digits.
-
- This function is signal safe. */
+/* Format an integer as hexadecimal with width digits into fd file descriptor.
+ The function is signal safe. */
PyAPI_FUNC(void) _Py_DumpHexadecimal(
int fd,
- unsigned long value,
+ uintptr_t value,
Py_ssize_t width);
PyAPI_FUNC(PyObject*) _PyTraceBack_FromFrame(