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
/
bytesobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-34436: Fix check that disables overallocation for the last fmt specifier ...
Alexey Izbyshev
2018-08-23
1
-3/+3
*
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
Victor Stinner
2018-07-24
1
-1/+2
*
bpo-20180: complete AC conversion of Objects/stringlib/transmogrify.h (GH-8039)
Tal Einat
2018-07-06
1
-7/+5
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-17/+17
*
bpo-32677: Add .isascii() to str, bytes and bytearray (GH-5342)
INADA Naoki
2018-01-27
1
-0/+2
*
bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...
stratakis
2017-11-02
1
-20/+7
*
bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158)
Serhiy Storchaka
2017-10-28
1
-2/+2
*
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
Serhiy Storchaka
2017-10-20
1
-1/+1
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-1/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+2
*
Expand the PySlice_GetIndicesEx macro. (#1023)
Serhiy Storchaka
2017-04-08
1
-3/+3
*
bpo-29116: Fix error messages for concatenating bytes and bytearray with unsu...
Serhiy Storchaka
2017-03-19
1
-1/+1
*
bpo-28856: Let %b format for bytes support objects that follow the buffer pro...
Xiang Zhang
2017-03-14
1
-1/+14
*
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Serhiy Storchaka
2017-03-12
1
-2/+2
*
bpo-29568: Disable any characters between two percents for escaped percent "%...
Serhiy Storchaka
2017-03-08
1
-10/+10
*
bpo-29714: Fix a regression that bytes format may fail when containing zero ...
Xiang Zhang
2017-03-06
1
-2/+2
*
Merge 3.6
INADA Naoki
2017-01-06
1
-8/+12
|
\
|
*
Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.
INADA Naoki
2017-01-06
1
-8/+12
*
|
Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII
Serhiy Storchaka
2016-12-19
1
-2/+2
*
|
Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
Serhiy Storchaka
2016-12-17
1
-3/+2
|
\
\
|
|
/
|
*
Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
Serhiy Storchaka
2016-12-17
1
-3/+2
|
|
\
|
|
*
Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
Serhiy Storchaka
2016-12-17
1
-3/+2
|
*
|
Issue 28128: Print out better error/warning messages for invalid string escap...
Eric V. Smith
2016-10-31
1
-4/+33
*
|
|
Use _PyObject_CallNoArg()
Victor Stinner
2016-12-06
1
-2/+2
*
|
|
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-3/+4
*
|
|
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-4/+3
*
|
|
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka
2016-11-20
1
-4/+1
*
|
|
Issue 28128: Print out better error/warning messages for invalid string escapes.
Eric V. Smith
2016-10-31
1
-4/+33
|
/
/
*
|
Issue #25270: Merge from 3.5
Berker Peksag
2016-09-16
1
-5/+14
|
\
\
|
|
/
|
*
Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an...
Berker Peksag
2016-09-16
1
-5/+14
*
|
Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...
Christian Heimes
2016-09-13
1
-10/+10
*
|
remove all usage of Py_LOCAL
Benjamin Peterson
2016-09-09
1
-1/+1
*
|
#27364: Deprecate invalid escape strings in str/byutes.
R David Murray
2016-09-08
1
-1/+2
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-2/+2
*
|
Issue #27506: Support bytes/bytearray.translate() delete as keyword argument
Martin Panter
2016-08-27
1
-6/+4
*
|
Issue #27704: Optimized creating bytes and bytearray from byte-like objects
Serhiy Storchaka
2016-08-15
1
-10/+8
*
|
Issue #27473: Fixed possible integer overflow in bytes and bytearray
Serhiy Storchaka
2016-07-10
1
-4/+2
|
\
\
|
|
/
|
*
Issue #27473: Fixed possible integer overflow in bytes and bytearray
Serhiy Storchaka
2016-07-10
1
-4/+2
*
|
Issue #27460: Unified error messages in bytes constructor for integers
Serhiy Storchaka
2016-07-06
1
-2/+2
*
|
Backed out changeset b0087e17cd5e (issue #26765)
Serhiy Storchaka
2016-07-03
1
-11/+71
*
|
Issue #26765: Moved wrappers for bytes and bytearray methods to common header
Serhiy Storchaka
2016-07-01
1
-71/+11
*
|
Issue #27007: The fromhex() class methods of bytes and bytearray subclasses
Serhiy Storchaka
2016-07-01
1
-1/+6
*
|
Issue #27125: Merge typo fixes from 3.5
Martin Panter
2016-05-30
1
-1/+1
|
\
\
|
|
/
|
*
Issue #27125: Remove duplicated words from documentation and comments
Martin Panter
2016-05-30
1
-1/+1
*
|
Issue #26765: Moved common code for the replace() method of bytes and bytearray
Serhiy Storchaka
2016-05-05
1
-505/+3
*
|
Issue #26765: Moved common code and docstrings for bytes and bytearray methods
Serhiy Storchaka
2016-05-04
1
-336/+26
*
|
Got rid of redundand "self" parameter declarations.
Serhiy Storchaka
2016-05-02
1
-26/+20
*
|
Issue #25349, #26249: Fix memleak in formatfloat()
Victor Stinner
2016-04-26
1
-0/+1
*
|
Issue #26766: Fix _PyBytesWriter_Finish()
Victor Stinner
2016-04-15
1
-1/+6
*
|
Issue #26764: Fixed SystemError in bytes.__rmod__.
Serhiy Storchaka
2016-04-15
1
-6/+4
[next]