__init__(self,
        repourl=None,
        baseURL=None,
        defaultBranch=None,
        forceSharedRepo=None,
        **kwargs)
     (Constructor)
  
   | source code 
     | 
    
  
  
  
    - Parameters:
 
    
        repourl (string) - the URL which points at the bzr repository. This is used as the 
          default branch. Using repourl does not enable builds
          of alternate branches: use baseURL to enable this. 
          Use either repourl or baseURL, not 
          both. 
        baseURL - if branches are enabled, this is the base URL to which a branch 
          name will be appended. It should probably end in a slash. Use 
          exactly one of repourl and baseURL. 
        defaultBranch - if branches are enabled, this is the branch to use if the Build 
          does not specify one explicitly. It will simply be appended to 
          baseURL and the result handed to the 'bzr checkout 
          pull' command. 
        forceSharedRepo - Boolean, defaults to False. If set to True, the working directory
          will be made into a bzr shared repository if it is not already. 
          Shared repository greatly reduces the amount of history data that
          needs to be downloaded if not using update/copy mode, or if using
          update/copy mode with multiple branches. 
      
    - Overrides:
        process.buildstep.BuildStep.__init__
    
 
   
 |