Skip to content

Commit 8882c4b

Browse files
committed
[Python] Make StartVector public
Make StartVector vector public since it is already being used in generated code
1 parent 068628a commit 8882c4b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

python/flatbuffers/builder.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,6 @@ def PrependUOffsetTRelative(self, off):
422422
off2 = self.Offset() - off + N.UOffsetTFlags.bytewidth
423423
self.PlaceUOffsetT(off2)
424424

425-
## @cond FLATBUFFERS_INTERNAL
426425
def StartVector(self, elemSize, numElems, alignment):
427426
"""StartVector initializes bookkeeping for writing a new vector.
428427
@@ -438,8 +437,6 @@ def StartVector(self, elemSize, numElems, alignment):
438437
self.Prep(alignment, elemSize * numElems) # In case alignment > int.
439438
return self.Offset()
440439

441-
## @endcond
442-
443440
def EndVector(self, numElems=None):
444441
"""EndVector writes data necessary to finish vector construction."""
445442

0 commit comments

Comments
 (0)