Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions autoload/conque_gdb/conque_gdb.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import re, collections
import re
import collections.abc

# Marks that a breakpoint has been hit
GDB_BREAK_MARK = '\x1a\x1a'
Expand Down Expand Up @@ -36,7 +37,7 @@ def __init__(self, fname, line, enable):
def __str__(self):
return self.filename + ':' + self.lineno + ',' + self.enabled

class RegisteredBpDict(collections.MutableMapping):
class RegisteredBpDict(collections.abc.MutableMapping):
def __init__(self):
self.r_breaks = dict()
self.lookups = dict()
Expand Down