Increases the reference count for this alias.
(self, alias)
| 924 | return alias, True |
| 925 | |
| 926 | def ref_alias(self, alias): |
| 927 | """Increases the reference count for this alias.""" |
| 928 | self.alias_refcount[alias] += 1 |
| 929 | |
| 930 | def unref_alias(self, alias, amount=1): |
| 931 | """Decreases the reference count for this alias.""" |
no outgoing calls
no test coverage detected