This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: SystemError when doing codecs.escape_encode(b'')
Type: behavior Stage: resolved
Components: Interpreter Core Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: duplicate
Dependencies: Superseder: codecs.escape_encode systemerror on empty byte string
View: 25270
Assigned To: Nosy List: The Compiler, doerwalter, lemburg
Priority: normal Keywords:

Created on 2015-09-29 16:23 by The Compiler, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (1)
msg251869 - (view) Author: Florian Bruhin (The Compiler) * Date: 2015-09-29 16:23
I can reproduce this with 3.4.3 and 3.5.0:

>>> import codecs
>>> codecs.escape_encode(b'')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
SystemError: Objects/bytesobject.c:3553: bad argument to internal function
History
Date User Action Args
2022-04-11 14:58:21adminsetgithub: 69458
2015-09-29 16:31:29zach.waresetstatus: open -> closed
superseder: codecs.escape_encode systemerror on empty byte string
resolution: duplicate
stage: resolved
2015-09-29 16:23:20The Compilercreate