8000 GH-131238: Core header refactor by markshannon · Pull Request #131250 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-131238: Core header refactor #131250

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Mar 17, 2025
Prev Previous commit
Move typedef
  • Loading branch information
markshannon committed Mar 17, 2025
commit 21090fcd034e70b501c193e7107614d631cc4d62
3 changes: 1 addition & 2 deletions Python/dtoa.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@
#include "pycore_pystate.h" // _PyInterpreterState_GET()
#include <stdlib.h> // exit()

typedef uint32_t ULong;

/* if _PY_SHORT_FLOAT_REPR == 0, then don't even try to compile
the following code */
Expand Down Expand Up @@ -159,7 +158,7 @@ typedef uint32_t ULong;
#endif


// ULong is defined in pycore_dtoa.h.
typedef uint32_t ULong;
typedef int32_t Long;
typedef uint64_t ULLong;

Expand Down
Loading
0