Skip to content

Commit

Permalink
Fix missing count in _handle_del
Browse files Browse the repository at this point in the history
See #196
  • Loading branch information
coldfix committed Dec 20, 2017
1 parent 6820a66 commit f58643e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpyc/core/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def _handle_close(self):
def _handle_getroot(self):
return self._local_root
def _handle_del(self, oid, count=1):
self._local_objects.decref(oid)
self._local_objects.decref(oid, count)
def _handle_repr(self, oid):
return repr(self._local_objects[oid])
def _handle_str(self, oid):
Expand Down

0 comments on commit f58643e

Please sign in to comment.