index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
unicodeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-114569: Use PyMem_* APIs for non-PyObjects in unicodeobject.c (#114690)
Erlend E. Aasland
2024-01-29
1
-6/+6
*
gh-111971: Make _PyUnicode_FromId thread-safe in --disable-gil (gh-113489)
Donghee Na
2023-12-26
1
-3/+7
*
gh-110383: Improve accuracy of str.split() and str.rsplit() docstrings (#113355)
Erlend E. Aasland
2023-12-21
1
-2/+4
*
gh-111924: Use PyMutex for Runtime-global Locks. (gh-112207)
Sam Gross
2023-12-07
1
-2/+2
*
gh-111972: Make Unicode name C APIcapsule initialization thread-safe (#112249)
Kirill Podoprigora
2023-11-30
1
-11/+21
*
gh-111999: Add signatures and improve docstrings for builtins (GH-112000)
Serhiy Storchaka
2023-11-13
1
-5/+7
*
Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)
Serhiy Storchaka
2023-11-10
1
-0/+12
*
gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)
Victor Stinner
2023-11-07
1
-7/+1
*
gh-110481: Implement biased reference counting (gh-110764)
Sam Gross
2023-10-30
1
-1/+1
*
gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)
Victor Stinner
2023-10-20
1
-1/+8
*
gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)
Victor Stinner
2023-10-20
1
-1/+7
*
gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...
Serhiy Storchaka
2023-10-11
1
-0/+76
*
gh-110079: Remove extern "C" { ...} in C code (#110080)
Victor Stinner
2023-09-29
1
-10/+0
*
gh-109693: Remove pycore_atomic_funcs.h (#109694)
Sam Gross
2023-09-21
1
-4/+3
*
gh-108915: Removes extra backslashes in str.split docstring (#109044)
Daniel Weiss
2023-09-07
1
-2/+2
*
gh-107913: Fix possible losses of OSError error codes (GH-107930)
Serhiy Storchaka
2023-08-26
1
-1/+1
*
gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)
Victor Stinner
2023-08-24
1
-1/+1
*
gh-106320: Remove private _PyEval function (#108433)
Victor Stinner
2023-08-24
1
-0/+2
*
GH-84436: Skip refcounting for known immortals (GH-107605)
Brandt Bucher
2023-08-04
1
-21/+12
*
gh-106931: Intern Statically Allocated Strings Globally (gh-107272)
Eric Snow
2023-07-27
1
-3/+69
*
gh-105699: Fix a Crasher Related to a Deprecated Global Variable (gh-106923)
Eric Snow
2023-07-21
1
-4/+7
*
gh-105699: Fix an Interned Strings Crasher (gh-106930)
Eric Snow
2023-07-21
1
-1/+12
*
gh-106487: Allow the 'count' argument of `str.replace` to be a keyword (#106488)
Hugo van Kemenade
2023-07-10
1
-2/+2
*
gh-106320: Remove private _PyErr C API functions (#106356)
Victor Stinner
2023-07-03
1
-0/+1
*
gh-104922: remove PY_SSIZE_T_CLEAN (#106315)
Inada Naoki
2023-07-02
1
-1/+0
*
gh-106320: Remove _PyInterpreterState_Get() alias (#106321)
Victor Stinner
2023-07-01
1
-1/+1
*
Remove private _PyCodec_Lookup() function (#106269)
Victor Stinner
2023-06-30
1
-1/+2
*
gh-105375: Improve error handling in PyUnicode_BuildEncodingMap() (#105491)
Erlend E. Aasland
2023-06-11
1
-12/+17
*
gh-105156: Deprecate the old Py_UNICODE type in C API (#105157)
Victor Stinner
2023-06-01
1
-4/+4
*
Fix compiler warning in unicodeobject.c (#105050)
Inada Naoki
2023-05-29
1
-1/+1
*
gh-98836: Extend PyUnicode_FromFormat() (GH-98838)
Serhiy Storchaka
2023-05-21
1
-108/+218
*
gh-104018: remove unused format "z" handling in string formatfloat() (#104107)
John Belmonte
2023-05-07
1
-2/+0
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+6
*
gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...
Eric Snow
2023-05-02
1
-10/+6
*
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
Eric Snow
2023-04-27
1
-4/+0
*
gh-84436: Implement Immortal Objects (gh-19474)
Eddie Elizondo
2023-04-22
1
-35/+66
*
gh-100227: Move the Dict of Interned Strings to PyInterpreterState (gh-102339)
Eric Snow
2023-03-28
1
-42/+56
*
gh-100227: Revert gh-102925 "gh-100227: Make the Global Interned Dict Safe fo...
Eric Snow
2023-03-27
1
-4/+9
*
gh-100227: Make the Global Interned Dict Safe for Isolated Interpreters (gh-1...
Eric Snow
2023-03-23
1
-9/+4
*
GH-100227: cleanup initialization of global interned dict (#102682)
Kumar Aditya
2023-03-14
1
-8/+10
*
gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)
Eric Snow
2023-03-08
1
-5/+2
*
gh-101765: unicodeobject: use Py_XDECREF correctly (#102283)
Jelle Zijlstra
2023-02-26
1
-1/+1
*
gh-101765: Fix refcount issues in list and unicode pickling (#102265)
Jelle Zijlstra
2023-02-26
1
-1/+3
*
gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...
Ionite
2023-02-24
1
-3/+8
*
gh-90111: Minor Cleanup for Runtime-Global Objects (gh-100254)
Eric Snow
2022-12-14
1
-2/+2
*
gh-81057: Move More Globals to _PyRuntimeState (gh-100092)
Eric Snow
2022-12-07
1
-3/+5
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
1
-2/+2
*
gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-99613)
Serhiy Storchaka
2022-12-01
1
-0/+3
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
1
-4/+2
*
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
Eric Snow
2022-11-16
1
-4/+15
[next]