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
/
Lib
/
test
/
test_bytes.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-20552: Use specific asserts in bytes tests (#790)
Serhiy Storchaka
2017-03-27
1
-15/+15
*
bpo-29714: Fix a regression that bytes format may fail when containing zero ...
Xiang Zhang
2017-03-06
1
-0/+10
*
Merge 3.6
INADA Naoki
2017-01-06
1
-0/+13
|
\
|
*
Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.
INADA Naoki
2017-01-06
1
-0/+13
*
|
Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII
Serhiy Storchaka
2016-12-19
1
-0/+8
|
/
*
Issue #28385: An error message when non-empty format spec is passed to
Serhiy Storchaka
2016-10-30
1
-0/+9
|
\
|
*
Issue #28385: An error message when non-empty format spec is passed to
Serhiy Storchaka
2016-10-30
1
-0/+9
*
|
Remove old typo.
Serhiy Storchaka
2016-09-08
1
-1/+1
*
|
Issue #27506: Support bytes/bytearray.translate() delete as keyword argument
Martin Panter
2016-08-27
1
-18/+31
*
|
Anti-registration of various ABC methods.
Guido van Rossum
2016-08-18
1
-0/+30
*
|
Issue #27474: Unified error messages in the __contains__ method of bytes and
Serhiy Storchaka
2016-07-10
1
-0/+1
*
|
Issue #27443: __length_hint__() of bytearray itearator no longer return
Serhiy Storchaka
2016-07-03
1
-0/+10
|
\
\
|
|
/
|
*
Issue #27443: __length_hint__() of bytearray itearator no longer return
Serhiy Storchaka
2016-07-03
1
-0/+10
*
|
Issue #27007: The fromhex() class methods of bytes and bytearray subclasses
Serhiy Storchaka
2016-07-01
1
-1/+26
*
|
Issue #27039: Fixed bytearray.remove() for values greater than 127.
Serhiy Storchaka
2016-05-16
1
-0/+7
|
\
\
|
|
/
|
*
Issue #27039: Fixed bytearray.remove() for values greater than 127.
Serhiy Storchaka
2016-05-16
1
-0/+7
*
|
Make bytes and bytearray subclass tests compatible with base types tests.
Serhiy Storchaka
2016-05-12
1
-15/+17
|
\
\
|
|
/
|
*
Make bytes and bytearray subclass tests compatible with base types tests.
Serhiy Storchaka
2016-05-12
1
-15/+17
|
*
Issue #26764: Bacported tests for bytes formatting.
Serhiy Storchaka
2016-04-15
1
-26/+11
*
|
Issue #26766: Fix _PyBytesWriter_Finish()
Victor Stinner
2016-04-15
1
-2/+2
*
|
Issue #26764: Fixed SystemError in bytes.__rmod__.
Serhiy Storchaka
2016-04-15
1
-26/+11
*
|
Issue #26712: Merge string_tests cleanup from 3.5
Martin Panter
2016-04-10
1
-87/+4
|
\
\
|
|
/
|
*
Issue #26712: Unify (r)split, (l/r)strip tests into string_tests
Martin Panter
2016-04-10
1
-87/+4
*
|
Issue #26257: Merge buffer_tests cleanup from 3.5
Martin Panter
2016-04-08
1
-9/+6
|
\
\
|
|
/
|
*
Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest
Martin Panter
2016-04-06
1
-9/+6
*
|
Issue #26492: Added additional tests for exhausted iterators of mutable seque...
Serhiy Storchaka
2016-03-30
1
-0/+2
|
\
\
|
|
/
|
*
Issue #26492: Added additional tests for exhausted iterators of mutable seque...
Serhiy Storchaka
2016-03-30
1
-0/+2
*
|
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
1
-0/+4
|
\
\
|
|
/
|
*
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
1
-0/+4
*
|
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka
2016-03-06
1
-3/+39
|
\
\
|
|
/
|
*
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka
2016-03-06
1
-3/+39
*
|
Issue #19587: Merge test_bytes cleanup from 3.5
Martin Panter
2016-02-02
1
-13/+0
|
\
\
|
|
/
|
*
Issue #19587: Remove masked and redundant tests in test_bytes
Martin Panter
2016-02-02
1
-13/+0
*
|
Issue #25766: Special method __bytes__() now works in str subclasses.
Serhiy Storchaka
2015-12-20
1
-0/+6
|
\
\
|
|
/
|
*
Issue #25766: Special method __bytes__() now works in str subclasses.
Serhiy Storchaka
2015-12-20
1
-0/+6
*
|
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-0/+11
|
\
\
|
|
/
|
*
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-0/+11
|
|
\
|
|
*
Issue #24731: Fixed crash on converting objects with special methods
Serhiy Storchaka
2015-11-25
1
-0/+11
*
|
|
test_bytes: new try to fix test on '%p' formatter on Windows
Victor Stinner
2015-10-14
1
-6/+16
*
|
|
Optimize bytes.fromhex() and bytearray.fromhex()
Victor Stinner
2015-10-14
1
-0/+14
*
|
|
Fix test_bytes on Windows
Victor Stinner
2015-10-14
1
-4/+7
*
|
|
Rewrite PyBytes_FromFormatV() using _PyBytesWriter API
Victor Stinner
2015-10-13
1
-12/+80
|
/
/
*
|
Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray
Serhiy Storchaka
2015-06-29
1
-1/+18
|
\
\
|
|
/
|
*
Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray
Serhiy Storchaka
2015-06-29
1
-1/+18
*
|
Issue #23985: Fix a possible buffer overrun when deleting a slice from the fr...
Antoine Pitrou
2015-05-19
1
-0/+16
|
\
\
|
|
/
|
*
Issue #23985: Fix a possible buffer overrun when deleting a slice from the fr...
Antoine Pitrou
2015-05-19
1
-0/+16
*
|
Use assertEqual rather than assertEquals to avoid the deprecation warning.
Gregory P. Smith
2015-04-26
1
-4/+4
*
|
Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.
Gregory P. Smith
2015-04-25
1
-0/+8
*
|
Issue #23681: The -b option now affects comparisons of bytes with int.
Serhiy Storchaka
2015-03-20
1
-13/+28
*
|
Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer()
Stefan Krah
2015-02-03
1
-0/+4
[next]