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
*
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner
2019-01-22
1
-1/+0
*
bpo-35713: Rework Python initialization (GH-11647)
Victor Stinner
2019-01-22
1
-14/+18
*
bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_Fro...
Serhiy Storchaka
2019-01-12
1
-3/+9
*
bpo-35560: Remove assertion from format(float, "n") (GH-11288)
Xtreak
2019-01-07
1
-1/+1
*
bpo-35636: Remove redundant check in unicode_hash(). (GH-11402)
animalize
2019-01-02
1
-10/+1
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-2/+3
*
bpo-35365: Use a wchar_t* buffer in the code page decoder. (GH-10837)
Serhiy Storchaka
2018-12-04
1
-60/+52
*
bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)
Serhiy Storchaka
2018-12-03
1
-5/+4
*
bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759)
Victor Stinner
2018-11-28
1
-7/+5
*
bpo-33954: Fix compiler warning in _PyUnicode_FastFill() (GH-10737)
Victor Stinner
2018-11-27
1
-1/+4
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623)
Victor Stinner
2018-11-26
1
-98/+165
*
bpo-35059: Cast void* to PyObject* (GH-10650)
Victor Stinner
2018-11-22
1
-3/+6
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506)
Gregory P. Smith
2018-11-13
1
-1/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Add pycore_fileutils.h (GH-10371)
Victor Stinner
2018-11-06
1
-0/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108)
Victor Stinner
2018-10-26
1
-36/+40
*
bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (...
Serhiy Storchaka
2018-10-23
1
-123/+121
*
Add missing closing quote and trailing period in str.isidentifier() docstring...
Emanuele Gaifas
2018-10-08
1
-2/+2
*
bpo-33014: Clarify str.isidentifier docstring (GH-6088)
Sanyam Khurana
2018-10-08
1
-3/+3
*
Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)
Victor Stinner
2018-09-11
1
-52/+53
*
bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)
Victor Stinner
2018-09-07
1
-53/+52
*
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
Victor Stinner
2018-08-29
1
-72/+101
*
bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)
Victor Stinner
2018-08-29
1
-24/+18
*
bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823)
Alexey Izbyshev
2018-08-19
1
-2/+3
*
bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences s...
Zackery Spytz
2018-08-19
1
-0/+5
*
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner
2018-08-03
1
-2/+2
*
bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)
INADA Naoki
2018-07-14
1
-0/+2
*
Change tp_size to tp_basicsize in comment and realign the comments (GH-6775)
Bup
2018-06-19
1
-38/+38
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-4/+4
*
bpo-29803: remove a redandunt op and fix a comment in unicodeobject.c (#660)
Xiang Zhang
2018-02-13
1
-5/+1
*
bpo-32827: Fix usage of _PyUnicodeWriter_Prepare() in decoding errors handler...
Serhiy Storchaka
2018-02-13
1
-7/+3
*
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
oldk
2018-02-02
1
-1/+1
*
bpo-32583: Fix possible crashing in builtin Unicode decoders (#5325)
Xiang Zhang
2018-01-31
1
-2/+20
*
Fix wrong assert in unicodeobject (GH-5340)
INADA Naoki
2018-01-27
1
-1/+1
*
bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342)
INADA Naoki
2018-01-27
1
-0/+20
*
bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)
Victor Stinner
2018-01-15
1
-331/+144
*
bpo-29240: Ignore UTF-8 Mode in time module (#5148)
Victor Stinner
2018-01-11
1
-0/+6
*
bpo-29240: readline now ignores the UTF-8 Mode (#5145)
Victor Stinner
2018-01-10
1
-10/+52
*
bpo-32030: Add _Py_EncodeLocaleRaw() (#4961)
Victor Stinner
2017-12-21
1
-4/+21
*
bpo-32030: Add _Py_EncodeUTF8_surrogateescape() (#4960)
Victor Stinner
2017-12-21
1
-0/+89
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-1/+1
*
bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)
Victor Stinner
2017-12-13
1
-9/+21
*
bpo-31979: Remove unused align_maxchar() function (#4527)
Victor Stinner
2017-11-23
1
-13/+0
*
bpo-31979: Simplify transforming decimals to ASCII (#4336)
Serhiy Storchaka
2017-11-13
1
-104/+32
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
1
-3/+3
*
bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...
stratakis
2017-11-02
1
-30/+4
*
bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158)
Serhiy Storchaka
2017-10-28
1
-2/+2
[next]