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-142217: Remove internal _Py_Identifier functions (#142219)
Victor Stinner
2025-12-03
1
-41/+0
*
gh-141070: Add PyUnstable_Object_Dump() function (#141072)
Victor Stinner
2025-11-18
1
-1/+2
*
gh-55531: Implement `normalize_encoding` in C (#136643)
Stan Ulbrych
2025-10-30
1
-7/+8
*
gh-139353: Add Objects/unicode_writer.c file (#139911)
Victor Stinner
2025-10-30
1
-638/+29
*
gh-129117: Add unicodedata.isxidstart() function (#140269)
Stan Ulbrych
2025-10-30
1
-0/+1
*
Remove dead stores to 'size' in UTF-8 decoder (unicodeobject.c) (#140637)
Shamil
2025-10-27
1
-2/+0
*
gh-111489: Remove _PyTuple_FromArray() alias (#139973)
Victor Stinner
2025-10-11
1
-2/+1
*
gh-139353: Add Objects/unicode_format.c file (#139491)
Victor Stinner
2025-10-10
1
-972/+8
*
gh-139353: Rename formatter_unicode.c to unicode_formatter.c (#139723)
Victor Stinner
2025-10-08
1
-178/+8
*
gh-139156: Optimize _PyUnicode_EncodeCharmap() (#139306)
Victor Stinner
2025-09-25
1
-14/+61
*
gh-139156: Optimize the UTF-7 encoder (#139253)
Victor Stinner
2025-09-24
1
-10/+5
*
gh-139156: Use PyBytesWriter in PyUnicode_EncodeCodePage() (#139259)
Victor Stinner
2025-09-24
1
-51/+36
*
gh-139156: Use PyBytesWriter in _PyUnicode_EncodeCharmap() (#139251)
Victor Stinner
2025-09-24
1
-54/+51
*
gh-129813, PEP 782: Use PyBytesWriter in utf8_encoder() (#138874)
Victor Stinner
2025-09-23
1
-54/+63
*
gh-139156: Use PyBytesWriter in PyUnicode_AsRawUnicodeEscapeString() (#139250)
Victor Stinner
2025-09-22
1
-24/+13
*
gh-139156: Use PyBytesWriter in UTF-16 encoder (#139233)
Victor Stinner
2025-09-22
1
-52/+52
*
gh-139156: Use PyBytesWriter in PyUnicode_AsUnicodeEscapeString() (#139249)
Victor Stinner
2025-09-22
1
-30/+16
*
gh-139156: Use PyBytesWriter in the UTF-7 encoder (#139248)
Victor Stinner
2025-09-22
1
-24/+16
*
gh-139156: Use PyBytesWriter in UTF-32 encoder (#139157)
Victor Stinner
2025-09-22
1
-50/+59
*
gh-129813, PEP 782: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#138830)
Victor Stinner
2025-09-13
1
-4/+4
*
gh-137210: Add a struct, slot & function for checking an extension's ABI (GH-...
Petr Viktorin
2025-09-05
1
-3/+11
*
GH-137623: Use an AC decorator for docstring line length enforcement (#137690)
Adam Turner
2025-08-18
1
-31/+62
*
gh-137514: Add a free-threading wrapper for mutexes (GH-137515)
Peter Bierma
2025-08-07
1
-13/+7
*
gh-58124: Avoid CP_UTF8 in UnicodeDecodeError (#137415)
Victor Stinner
2025-08-06
1
-4/+0
*
gh-132661: Disallow `Template`/`str` concatenation after PEP 750 spec update ...
Dave Peck
2025-07-21
1
-11/+4
*
gh-134891: Add PyUnstable_Unicode_GET_CACHED_HASH (GH-134892)
Petr Viktorin
2025-06-06
1
-5/+1
*
gh-133968: Add PyUnicodeWriter_WriteASCII() function (#133973)
Victor Stinner
2025-05-29
1
-0/+14
*
gh-133968: Add fast path to PyUnicodeWriter_WriteStr() (#133969)
Victor Stinner
2025-05-13
1
-1/+6
*
gh-133767: Fix use-after-free in the unicode-escape decoder with an error han...
Serhiy Storchaka
2025-05-12
1
-18/+28
*
gh-133610: Remove PyUnicode_AsDecoded/Encoded functions (#133612)
Stan Ulbrych
2025-05-09
1
-29/+4
*
gh-128972: Add `_Py_ALIGN_AS` and revert `PyASCIIObject` memory layout. (GH-1...
Petr Viktorin
2025-05-02
1
-3/+3
*
gh-132661: Implement PEP 750 (#132662)
Lysandros Nikolaou
2025-04-30
1
-4/+11
*
gh-132070: Use _PyObject_IsUniquelyReferenced in unicodeobject (gh-133039)
Donghee Na
2025-04-29
1
-18/+25
*
gh-132798: Schedule removal of `PyUnicode_AsDecoded/Encoded` functions for 3....
Stan Ulbrych
2025-04-25
1
-4/+8
*
gh-103997: Automatically dedent the argument to "-c" (#103998)
Jon Crall
2025-04-18
1
-0/+157
*
gh-111178: remove redundant casts for functions with correct signatures (#131...
Bénédikt Tran
2025-04-01
1
-14/+14
*
gh-131238: Remove many includes from pycore_interp.h (#131472)
Victor Stinner
2025-03-19
1
-0/+1
*
GH-131238: Core header refactor (GH-131250)
Mark Shannon
2025-03-17
1
-0/+1
*
GH-127705: Fix _Py_RefcntAdd to handle objects becoming immortal (GH-131140)
Mark Shannon
2025-03-12
1
-1/+1
*
gh-111178: Fix function signatures of unicodeiter (#130684)
Victor Stinner
2025-03-04
1
-19/+23
*
gh-130790: Remove references about unicode's readiness from comments (#130801)
Sergey Miryanov
2025-03-03
1
-1/+0
*
gh-87790: support thousands separators for formatting fractional part of floa...
Sergey B Kirpichev
2025-02-25
1
-6/+7
*
gh-129701: Fix a data race in `intern_common` in the free threaded build (GH-...
Sam Gross
2025-02-17
1
-6/+14
*
gh-82045: Correct and deduplicate "isprintable" docs; add test. (GH-130118)
Stan Ulbrych
2025-02-14
1
-4/+3
*
gh-129354: Use PyErr_FormatUnraisable() function (#129511)
Victor Stinner
2025-01-31
1
-1/+3
*
gh-89188: Implement PyUnicode_KIND() as a function (#129412)
Victor Stinner
2025-01-30
1
-0/+21
*
gh-128016: Improved invalid escape sequence warning message (#128020)
Umar Butler
2025-01-15
1
-2/+4
*
gh-128137: Update PyASCIIObject to handle interned field with the atomic oper...
Donghee Na
2025-01-05
1
-3/+3
*
gh-127903: Fix a crash on debug builds when calling `Objects/unicodeobject::_...
Alexander Shadchin
2025-01-03
1
-3/+6
*
gh-128212: Fix race in `_PyUnicode_CheckConsistency` (GH-128367)
Sam Gross
2025-01-02
1
-1/+1
[next]