summaryrefslogtreecommitdiffstats
path: root/PC/pyshellext_d.def
blob: 7d2148bb861edc7fc5bf3a8f6cff4fed76d6e1d6 (plain)
1
2
3
4
5
6
LIBRARY	"pyshellext_d"
EXPORTS
  DllRegisterServer PRIVATE
  DllUnregisterServer PRIVATE
  DllGetClassObject PRIVATE
  DllCanUnloadNow PRIVATE
an title='2022-04-15 01:44:05 (GMT)'>2022-04-151-14/+8 * bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-0/+1 * bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)Christian Heimes2021-10-221-0/+4 * closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)Benjamin Peterson2021-09-141-3/+3 * bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283)Dong-hee Na2021-09-111-0/+4 * Remove irrelevant comment which was added in 2a70a3a (GH-27044)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2021-07-091-1/+0 * bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)Erlend Egeberg Aasland2021-06-171-1/+1 * bpo-42972: Fully support GC for pyexpat, unicodedata, and dbm/gdbm heap types...Erlend Egeberg Aasland2021-05-271-3/+14 * Do not use Py_ssize_clean_t (GH-25940)Inada Naoki2021-05-081-2/+2 * bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)Erlend Egeberg Aasland2021-04-301-1/+1 * bpo-41798: Allocate unicodedata CAPI on the heap (GH-24128)Erlend Egeberg Aasland2021-01-201-8/+29 * bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1 * bpo-42157: Rename unicodedata.ucnhash_CAPI (GH-22994)Victor Stinner2020-10-271-2/+2 * bpo-42157: Convert unicodedata.UCD to heap type (GH-22991)Victor Stinner2020-10-261-76/+44 * bpo-42157: unicodedata avoids references to UCD_Type (GH-22990)Victor Stinner2020-10-261-105/+111 * bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713)Victor Stinner2020-10-261-13/+15 * bpo-1635741: Add a global module state to unicodedata (GH-22712)Victor Stinner2020-10-151-54/+107 * bpo-1635741, unicodedata: add ucd_type parameter to UCD_Check() macro (GH-22328)Mohamed Koubaa2020-09-231-13/+16 * bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1 * bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-111-3/+3 * bpo-39943: Remove unused self from find_nfc_index() (GH-18973)Andy Lester2020-03-171-4/+4 * closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)Benjamin Peterson2020-03-11