[issue20304] Argument Clinic: char convertor should use default values of type bytes

2018-10-12 Thread Tal Einat
Tal Einat added the comment: This was fixed in PR GH-8039. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2018-07-02 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2018-07-01 Thread Tal Einat
Change by Tal Einat : -- keywords: +patch pull_requests: +7649 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2018-07-01 Thread Tal Einat
Tal Einat added the comment: See PR GH-8039, which fixes this in order to AC convert Objects/stringlib/transmogrify.h. -- versions: +Python 3.8 -Python 3.4 ___ Python tracker

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- components: +Argument Clinic ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20304 ___ ___

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2014-01-19 Thread Tal Einat
New submission from Tal Einat: For example, in `Object/stringlib/transmogrify.h`, the methods `ljust` and `rjust` have an argument named `fillchar` of type char. It's Python default value should be b' ', but the only way I've found to do that is by setting `py_default = b' '`. --

[issue20304] Argument Clinic: char convertor should use default values of type bytes

2014-01-19 Thread Tal Einat
Tal Einat added the comment: Additionally, the char converter doesn't create valid c defaults. For example, I got instead of ' ' for fillchar, which has type char, so I had to manually set c_default = ' '. -- ___ Python tracker