File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1926,7 +1926,7 @@ class procedure TPyDelphiStream.RegisterMethods(PythonType: TPythonType);
1926
1926
begin
1927
1927
inherited ;
1928
1928
PythonType.AddMethod(' ReadBytes' , @TPyDelphiStream.ReadBytes_Wrapper,
1929
- ' TPyDelphiStream.ReadBytes()' + #10 + ' Read content as bytearray .' );
1929
+ ' TPyDelphiStream.ReadBytes()' + #10 + ' Read content as bytes .' );
1930
1930
PythonType.AddMethod(' ReadInt' , @TPyDelphiStream.ReadInt_Wrapper,
1931
1931
' TPyDelphiStream.ReadInt()' + #10 + ' Read content as integer.' );
1932
1932
PythonType.AddMethod(' ReadString' , @TPyDelphiStream.ReadString_Wrapper,
@@ -1935,7 +1935,7 @@ class procedure TPyDelphiStream.RegisterMethods(PythonType: TPythonType);
1935
1935
' TPyDelphiStream.ReadFloat()' + #10 + ' Read content as float.' );
1936
1936
1937
1937
PythonType.AddMethod(' WriteBytes' , @TPyDelphiStream.WriteBytes_Wrapper,
1938
- ' TPyDelphiStream.WriteBytes()' + #10 + ' Write content as bytearray .' );
1938
+ ' TPyDelphiStream.WriteBytes()' + #10 + ' Write content as bytes .' );
1939
1939
PythonType.AddMethod(' WriteInt' , @TPyDelphiStream.WriteInt_Wrapper,
1940
1940
' TPyDelphiStream.WriteInt()' + #10 + ' Write content as integer.' );
1941
1941
PythonType.AddMethod(' WriteString' , @TPyDelphiStream.WriteString_Wrapper,
You can’t perform that action at this time.
0 commit comments