Implement tuple addition.

This commit is contained in:
Paul Sokolovsky
2014-02-08 23:17:51 +02:00
parent e827e98a6f
commit ee4aaf7cdd
4 changed files with 15 additions and 3 deletions

View File

@@ -14,3 +14,5 @@ except AttributeError:
print(x[1:])
print(x[:-1])
print(x[2:3])
print(x + (10, 100, 10000))