source typo fixes pt2 (only on py3 merged code)
This commit is contained in:
@@ -97,7 +97,7 @@ Standard_Integer FeatureImportStep::Execute(void)
|
||||
//aReader.PrintCheckTransfer (failsonly, IFSelect_ItemsByEntity);
|
||||
for ( Standard_Integer n = 1; n<= nbr; n++)
|
||||
{
|
||||
printf("STEP: Transfering Root %d\n",n);
|
||||
printf("STEP: Transferring Root %d\n",n);
|
||||
aReader.TransferRoot(n);
|
||||
// Collecting resulting entities
|
||||
Standard_Integer nbs = aReader.NbShapes();
|
||||
@@ -107,7 +107,7 @@ Standard_Integer FeatureImportStep::Execute(void)
|
||||
} else {
|
||||
for (Standard_Integer i =1; i<=nbs; i++)
|
||||
{
|
||||
printf("STEP: Transfering Shape %d\n",n);
|
||||
printf("STEP: Transferring Shape %d\n",n);
|
||||
aShape=aReader.Shape(i);
|
||||
aHSequenceOfShape->Append(aShape);
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ class SELECT(object):
|
||||
|
||||
def get_allowed_basic_types(self):
|
||||
''' if a select contains some subselect, goes down through the different
|
||||
sublayers untill there is no more '''
|
||||
sublayers until there is no more '''
|
||||
b = []
|
||||
_auth_types = self.get_allowed_types()
|
||||
for _auth_type in _auth_types:
|
||||
|
||||
@@ -130,7 +130,7 @@ class Part21Parser:
|
||||
line = fp.readline()
|
||||
if not line:
|
||||
break
|
||||
# there may be a multline definition. In this case, we read lines untill we found
|
||||
# there may be a multline definition. In this case, we read lines until we found
|
||||
# a ;
|
||||
while (line.find(';') == -1): #its a multiline
|
||||
line = line.replace("\n","").replace("\r","") + fp.readline()
|
||||
|
||||
Reference in New Issue
Block a user