[issue38445] os.path.exists() takes bool as argument and returns True

2019-10-11 Thread Mariano Anaya
Mariano Anaya added the comment: Hi, I would like to take a look at this issue. Could someone please assign it to me? Thanks -- nosy: +Mariano Anaya ___ Python tracker <https://bugs.python.org/issue38

[issue30530] Descriptors HowTo: Example on function.__get__ needs update

2017-05-31 Thread Mariano Anaya
New submission from Mariano Anaya: The example on which tries to create a method from the function's __get__ doesn't work for Python 3.5+. It would give this error: TypeError: method expected 2 arguments, got 3 The 3rd parameter, needs to be removed. -- assignee: docs@python