Changeset 3ee7406 in trunk for src/allmydata/interfaces.py


Ignore:
Timestamp:
2009-10-12T22:45:06Z (15 years ago)
Author:
Brian Warner <warner@…>
Branches:
master
Children:
e2ffc3d
Parents:
576c47d
Message:

replace Client.create_empty_dirnode() with create_dirnode(), in anticipation
of adding initial_children= argument.

Includes stubbed-out initial_children= support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/interfaces.py

    r576c47d r3ee7406  
    20042004        """
    20052005
    2006     def create_empty_dirnode():
    2007         """Create a new dirnode, empty and unattached.
     2006    def create_dirnode(initial_children={}):
     2007        """Create a new unattached dirnode, possibly with initial children.
     2008
     2009        @param initial_children: dict with keys that are unicode child names,
     2010        and values that are (child_writecap, child_readcap, metadata) tuples.
     2011
    20082012        @return: a Deferred that fires with the new IDirectoryNode instance.
    20092013        """
Note: See TracChangeset for help on using the changeset viewer.