seisatsu/DennisMUD

Use tuples instead of lists where appropriate.

seisatsu opened this issue · 1 comments

Tuples are generally faster than lists, but they can't be used if the list will need to be modified, and it's also difficult to pass them as arguments to functions sometimes.

Not worth the extra work. The performance gains are irrelevant for an application of this type, and it would decrease readability as well.