Decreases the reference count for this alias.
(self, alias, amount=1)
| 928 | self.alias_refcount[alias] += 1 |
| 929 | |
| 930 | def unref_alias(self, alias, amount=1): |
| 931 | """Decreases the reference count for this alias.""" |
| 932 | self.alias_refcount[alias] -= amount |
| 933 | |
| 934 | def promote_joins(self, aliases): |
| 935 | """ |
no outgoing calls
no test coverage detected