Bug #975 » S3_2-generate_packets.py-Fix-crash-under-Python-3.13.patch
| common/generate_packets.py | ||
|---|---|---|
|
if not dirs:
|
||
|
raise ValueError("no directions defined for %s" % self.name)
|
||
|
self.dirs = Directions(dirs)
|
||
|
self.dirs = Directions(frozenset(dirs))
|
||
|
"""Which directions this packet can be sent in"""
|
||
|
raw_fields = [
|
||