omeroweb.webadmin.tests.request_factory.FakePayload:
A wrapper around StringIO that restricts what can be read since
data from the network can't be seeked and cannot be read outside of
its content length.
omero.tables.HdfList:
Since two calls to tables.openFile() return non-equal files with
equal fileno's, portalocker cannot be used to prevent the creation
of two HdfStorage instances from the same Python process.
omero.util.StreamRedirect:
Since all server components should exclusively using the logging
module any output to stdout or stderr is caught and logged at
"WARN".
omero.util.upgrade_check.UpgradeCheck:
Port of Java UpgradeCheck:
https://trac.openmicroscopy.org.uk/omero/browser/trunk/components/common/src/ome/system/UpgradeCheck.java
omero.util.populate_metadata.ValueResolver:
Value resolver for column types which is responsible for filling up
non-metadata columns with their OMERO data model identifiers.
omero.gateway.assert_re:
Function decorator to make sure that rendering engine is prepared
before call.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.