[Python] Commit some orphan python genfile diffs. (#6325)
authorDavid P. Sicilia <dpacbach@users.noreply.github.com>
Fri, 11 Dec 2020 00:43:40 +0000 (19:43 -0500)
committerGitHub <noreply@github.com>
Fri, 11 Dec 2020 00:43:40 +0000 (16:43 -0800)
13 files changed:
tests/MyGame/Example/ArrayTable.py
tests/MyGame/Example/Monster.py
tests/MyGame/Example/Referrable.py
tests/MyGame/Example/Stat.py
tests/MyGame/Example/TestSimpleTableWithEnum.py
tests/MyGame/Example/TypeAliases.py
tests/MyGame/Example2/Monster.py
tests/MyGame/InParentNamespace.py
tests/MyGame/MonsterExtra.py
tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py
tests/namespace_test/NamespaceA/SecondTableInA.py
tests/namespace_test/NamespaceA/TableInFirstNS.py
tests/namespace_test/NamespaceC/TableInC.py

index 83905e6..af66ac4 100644 (file)
@@ -10,7 +10,7 @@ class ArrayTable(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsArrayTable(cls, buf, offset):
+    def GetRootAsArrayTable(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = ArrayTable()
         x.Init(buf, n + offset)
index 67f6e1b..0d2e966 100644 (file)
@@ -11,7 +11,7 @@ class Monster(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsMonster(cls, buf, offset):
+    def GetRootAsMonster(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = Monster()
         x.Init(buf, n + offset)
index 44bf50f..80e67f2 100644 (file)
@@ -10,7 +10,7 @@ class Referrable(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsReferrable(cls, buf, offset):
+    def GetRootAsReferrable(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = Referrable()
         x.Init(buf, n + offset)
index 7d3362f..508beb1 100644 (file)
@@ -10,7 +10,7 @@ class Stat(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsStat(cls, buf, offset):
+    def GetRootAsStat(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = Stat()
         x.Init(buf, n + offset)
index d91947a..639b74e 100644 (file)
@@ -10,7 +10,7 @@ class TestSimpleTableWithEnum(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsTestSimpleTableWithEnum(cls, buf, offset):
+    def GetRootAsTestSimpleTableWithEnum(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = TestSimpleTableWithEnum()
         x.Init(buf, n + offset)
index 0567212..239b274 100644 (file)
@@ -10,7 +10,7 @@ class TypeAliases(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsTypeAliases(cls, buf, offset):
+    def GetRootAsTypeAliases(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = TypeAliases()
         x.Init(buf, n + offset)
index 538b035..718f1e4 100644 (file)
@@ -10,7 +10,7 @@ class Monster(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsMonster(cls, buf, offset):
+    def GetRootAsMonster(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = Monster()
         x.Init(buf, n + offset)
index e78ea6a..117f651 100644 (file)
@@ -10,7 +10,7 @@ class InParentNamespace(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsInParentNamespace(cls, buf, offset):
+    def GetRootAsInParentNamespace(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = InParentNamespace()
         x.Init(buf, n + offset)
index eafea7c..48ab461 100644 (file)
@@ -10,7 +10,7 @@ class MonsterExtra(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsMonsterExtra(cls, buf, offset):
+    def GetRootAsMonsterExtra(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = MonsterExtra()
         x.Init(buf, n + offset)
index e86ba63..19b87e1 100644 (file)
@@ -10,7 +10,7 @@ class TableInNestedNS(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsTableInNestedNS(cls, buf, offset):
+    def GetRootAsTableInNestedNS(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = TableInNestedNS()
         x.Init(buf, n + offset)
index 5aaa8ed..ade8fdb 100644 (file)
@@ -10,7 +10,7 @@ class SecondTableInA(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsSecondTableInA(cls, buf, offset):
+    def GetRootAsSecondTableInA(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = SecondTableInA()
         x.Init(buf, n + offset)
index 39598f5..8d917ac 100644 (file)
@@ -10,7 +10,7 @@ class TableInFirstNS(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsTableInFirstNS(cls, buf, offset):
+    def GetRootAsTableInFirstNS(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = TableInFirstNS()
         x.Init(buf, n + offset)
index 8f04b52..1abb5e3 100644 (file)
@@ -10,7 +10,7 @@ class TableInC(object):
     __slots__ = ['_tab']
 
     @classmethod
-    def GetRootAsTableInC(cls, buf, offset):
+    def GetRootAsTableInC(cls, buf, offset=0):
         n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
         x = TableInC()
         x.Init(buf, n + offset)