1 """Prototype modules that will later be relocated to elsewhere in the codebase.
2
3 The idea of this package is that modules can be created in here that depend
4 on the rest of the codebase, but that should not be used from other modules
5 (or at least not without the strong proviso that the interfaces may change
6 substantially and the modules might disappear altogether).
7
8 This makes it easy to prototype new classes and functions without having to
9 decide yet where they'll live in the codebase or what their interfaces will
10 be. In many cases, a prototyped idea may in fact be dropped altogether. Again,
11 this can be done without disturbing the reliability of the rest of the project.
12
13 Everything in this package is transient and nothing should live here
14 permanently.
15
16 """
17