(/* name, obj */)
| 8836 | return candidate; |
| 8837 | } |
| 8838 | _is_illegal_name(/* name, obj */) { |
| 8839 | /* |
| 8840 | if name in keyword.kwlist: |
| 8841 | return True |
| 8842 | if name in builtins.__dict__: |
| 8843 | return obj is not builtins.__dict__[name] |
| 8844 | if name in _custom_builtins: |
| 8845 | return obj is not _custom_builtins[name].obj |
| 8846 | */ |
| 8847 | return false; |
| 8848 | } |
| 8849 | associate_name_with_obj() { |
| 8850 | |
| 8851 | } |