Gaudi Framework, version v25r0

Home   Generated: Mon Feb 17 2014
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Namespaces | Classes | Functions | Variables
EnvConfig Namespace Reference

Namespaces

namespace  _runtests
 
namespace  Control
 
namespace  TestEnvOps
 
namespace  TestXMLOps
 
namespace  Variable
 
namespace  xmlModule
 

Classes

class  EnvError
 
class  Script
 

Functions

def splitNameValue
 

Variables

string __author__ "Marco Clemencic <marco.clemencic@cern.ch>"
 
list __all__ []
 
list path ['.']
 

Function Documentation

def EnvConfig.splitNameValue (   name_value)
split the "NAME=VALUE" string into the tuple ("NAME", "VALUE")
replacing '[:]' with os.pathsep in VALUE

Definition at line 24 of file __init__.py.

24 
25 def splitNameValue(name_value):
26  """split the "NAME=VALUE" string into the tuple ("NAME", "VALUE")
27  replacing '[:]' with os.pathsep in VALUE"""
28  if '=' not in name_value:
29  raise EnvError("Invalid variable argument '%s'." % name_value)
30  n, v = name_value.split('=', 1)
31  return n, v.replace('[:]', os.pathsep)

Variable Documentation

list EnvConfig.__all__ []

Definition at line 9 of file __init__.py.

string EnvConfig.__author__ "Marco Clemencic <marco.clemencic@cern.ch>"

Definition at line 1 of file __init__.py.

list EnvConfig.path ['.']

Definition at line 12 of file __init__.py.


Generated at Mon Feb 17 2014 14:38:14 for Gaudi Framework, version v25r0 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004