-
Tue Feb 18 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20250218git632d1aa-1
- Update to 0^20250218git632d1aa
- Don't redefine `_Py_NULL` macro if already defined
-
Tue Jan 28 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20250128gitc84545f-1
- Update to 0^20250128gitc84545f
- Remove `PyConfig.use_system_logger`: it will only be available on Python
3.13.2 which is not released yet.
- Fix multiple definitions for `Py_fclose`
- Avoid `Py_ARRAY_LENGTH()` (because it fails with C++ on Python 3.9 on
macOS)
- Improve `test_config`
- Replace `extern` with `PyAPI_FUNC()`
-
Mon Jan 20 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20250119git8a52253-1
- Update to 0^20250119git8a52253
- Add `PyConfig_Get()`
- Optimize `PyWeakref_GetRef()`
-
Tue Jan 07 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20250106git79404e9-1
- Update to 0^20250106git79404e9
- Add `Py_fopen()` and `Py_fclose()`
-
Tue Dec 17 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20241216git7eb512b-1
- Update to 0^20241216git7eb512b
- Add `structmember.h` constants
-
Fri Dec 13 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20241213git61709bf-1
- Update to 0^20241213git61709bf
- Add PyLong Import/Export API
-
Fri Nov 15 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20241115git03e441d-1
- Update to 0^20241115git03e441d
- Add `PyLong_IsPositive`/`Negative`/`Zero()` functions
- Relax `PYPY_VERSION_NUM` requirements for hash macros
-
Thu Oct 10 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20241009git669c882-1
- Update to 0^20241009git669c882
- Add `PyUnicode_Equal()` function
- Add `PyBytes_Join()` function
- Add `Py_HashBuffer()` function
- Add `PyIter_NextItem()` function
- Add `PyLong_FromUInt64()` and `PyLong_AsUInt64()`
-
Thu Oct 10 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20241008gitbb0934e-1
- Update to 0^20241008gitbb0934e
- Document PyUnicodeWriter API
-
Tue Sep 24 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240923gitd20d7f8-1
- Update to 0^20240923gitd20d7f8
- Fix incorrect use of assignment in place of an equality test.