| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Switched from vendored ``libmpdecimal`` code to a separately-hosted external | ||
| package in the ``cpython-source-deps`` repository when building the | ||
| ``_decimal`` module. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| /* Windows mpdecimal.h shim | ||
| * | ||
| * Generally, the mpdecimal library build will copy the correct header into | ||
| * place named "mpdecimal.h", but since we're building it ourselves directly | ||
| * into _decimal.pyd, we need to pick the right one. | ||
| * | ||
| * */ | ||
|
|
||
| #if defined(_MSC_VER) | ||
| #if defined(CONFIG_64) | ||
| #include <mpdecimal64vc.h> | ||
| #elif defined(CONFIG_32) | ||
| #include <mpdecimal32vc.h> | ||
| #else | ||
| #error "Unknown configuration!" | ||
| #endif | ||
| #endif |
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.