[issue23362] integer overflow in string translate

2015-03-02 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 3.3, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mail

[issue23362] integer overflow in string translate

2015-03-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: serhiy.storchaka -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker ___ ___ P

[issue23362] integer overflow in string translate

2015-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 21cd7f83e0aa by Benjamin Peterson in branch '3.3': use PyMem_NEW to detect overflow (closes #23362) https://hg.python.org/cpython/rev/21cd7f83e0aa New changeset 880906bbf792 by Benjamin Peterson in branch '3.4': merge 3.3 (#23362) https://hg.python.

[issue23362] integer overflow in string translate

2015-03-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23362] integer overflow in string translate

2015-02-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue23362] integer overflow in string translate

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Do you want to provide a patch? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-

[issue23362] integer overflow in string translate

2015-02-01 Thread paul
New submission from paul: # Bug # --- # # PyObject * # _PyUnicode_TranslateCharmap(PyObject *input, # PyObject *mapping, # const char *errors) # { # ... # size = PyUnicode_GET_LENGTH(input); # ... # osize = size; # 1 outpu