]> SALOME platform Git repositories - modules/kernel.git/blobdiff - doc/salome/python_doc_compl.dox
Salome HOME
Merge 'master' branch into 'V9_dev' branch
[modules/kernel.git] / doc / salome / python_doc_compl.dox
index 46c9b982b134f2973138beb3c0ba3ae837ec72a9..fa29dcab3e8c8eda06a05059001002fb2bdaa383 100644 (file)
@@ -40,7 +40,7 @@ named salome, and then sub-packages could be created for each
 The motivations of this objective are twice:
 
 - Definitively prevent the risk of naming conflict between python
-  modules coming from different %SALOME modules. Today, the developper
+  modules coming from different %SALOME modules. Today, the developer
   of a module has to take care of the names used in other modules to
   choose a name.
 - Integrate in %SALOME some python modules initially developed in the
@@ -76,7 +76,7 @@ and all other stuff should be imported and work as before).
 To reach this target, we have to face two problems:
 
 - %A naming conflict with the instruction <b>import salome</b>. The result
-  is unpredictible because of the existence in the <b>sys.path</b> of
+  is unpredictable because of the existence in the <b>sys.path</b> of
   both a file <b>salome.py</b> and a package \b salome.
 - The dispatching of <b>salome.*</b> sub-packages in the different %SALOME
   modules.
@@ -120,7 +120,7 @@ def extend_path(pname):
     # WARN: This may still add duplicate entries to path on
     # case-insensitive filesystems
     if os.path.isdir(subdir) and subdir not in __path__:
-      print "INFO - The directory %s is appended to sys.path" % subdir
+      print("INFO - The directory %s is appended to sys.path" % subdir)
       __path__.append(subdir)
  
 extend_path(ROOT_PYTHONPACKAGE_NAME)