[issue46837] lstrip and strip not working as expected

2022-02-23 Thread Jigar Gajjar
Change by Jigar Gajjar : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue46837> ___ ___ Python-bugs-list

[issue46837] lstrip and strip not working as expected

2022-02-23 Thread Jigar Gajjar
New submission from Jigar Gajjar : Code: my_string = 'Auth:AWS' print(my_string.lstrip('Auth:')) Actual Output: WS Excepted Output: AWS -- messages: 413831 nosy: jigar030 priority: normal severity: normal status: open title: lstrip and strip not working as expected type: behavior