-
zope-zc.lockfile-1.0.2-1.lbn13.noarch
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives. Of course, these locks could be
used to mediate access to other files. For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files. The database files and lock file files
are separate files.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.lockfile-1.2.1-1.lbn19.noarch
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives. Of course, these locks could be
used to mediate access to other files. For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files. The database files and lock file files
are separate files.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.lockfile-1.2.1-1.lbn25.py37.noarch
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically
to lock files, but to simply provide locks with an implementation
based on file-locking primitives. Of course, these locks could be
used to mediate access to other files. For example, the ZODB file
storage implementation uses file locks to mediate access to
file-storage database files. The database files and lock file files
are separate files.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.mappingobject-1.0.0-1.lbn13.noarch
zc.mappingobject provides a wrapper for a mapping objects that provides both attribute and item access.
>>> import zc.mappingobject
>>> mapping = dict(a=1)
>>> ob = zc.mappingobject.mappingobject(mapping)
>>> ob.a
1
>>> ob.a = 2
>>> ob.a
2
>>> mapping
{'a': 2}
>>> list(ob)
['a']
>>> len(ob)
1
>>> ob['a'] = 3
>>> ob.a
3
>>> mapping
{'a': 3}
>>> del ob.a
>>> mapping
{}
>>> ob.a
Traceback (most recent call last):
...
AttributeError: a
>>> ob.b = 1
>>> mapping
{'b': 1}
>>> del ob['b']
>>> mapping
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.mappingobject-1.0.0-1.lbn19.noarch
zc.mappingobject provides a wrapper for a mapping objects that provides both attribute and item access.
>>> import zc.mappingobject
>>> mapping = dict(a=1)
>>> ob = zc.mappingobject.mappingobject(mapping)
>>> ob.a
1
>>> ob.a = 2
>>> ob.a
2
>>> mapping
{'a': 2}
>>> list(ob)
['a']
>>> len(ob)
1
>>> ob['a'] = 3
>>> ob.a
3
>>> mapping
{'a': 3}
>>> del ob.a
>>> mapping
{}
>>> ob.a
Traceback (most recent call last):
...
AttributeError: a
>>> ob.b = 1
>>> mapping
{'b': 1}
>>> del ob['b']
>>> mapping
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.mappingobject-1.0.0-1.lbn25.noarch
zc.mappingobject provides a wrapper for a mapping objects that provides both attribute and item access.
>>> import zc.mappingobject
>>> mapping = dict(a=1)
>>> ob = zc.mappingobject.mappingobject(mapping)
>>> ob.a
1
>>> ob.a = 2
>>> ob.a
2
>>> mapping
{'a': 2}
>>> list(ob)
['a']
>>> len(ob)
1
>>> ob['a'] = 3
>>> ob.a
3
>>> mapping
{'a': 3}
>>> del ob.a
>>> mapping
{}
>>> ob.a
Traceback (most recent call last):
...
AttributeError: a
>>> ob.b = 1
>>> mapping
{'b': 1}
>>> del ob['b']
>>> mapping
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.monitor-0.3.1-1.lbn13.noarch
The monitor server is a server that provides a command-line interface to request various
bits of information. The server is zc.ngi based, so we can use the zc.ngi testing
infrastructure to demonstrate it.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.monitor-0.3.1-1.lbn19.noarch
The monitor server is a server that provides a command-line interface to request various
bits of information. The server is zc.ngi based, so we can use the zc.ngi testing
infrastructure to demonstrate it.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
zope-zc.monitor-0.3.1-1.lbn25.noarch
The monitor server is a server that provides a command-line interface to request various
bits of information. The server is zc.ngi based, so we can use the zc.ngi testing
infrastructure to demonstrate it.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 25
-
zope-zc.ngi-2.0.1-1.lbn13.noarch
The Network Gateway Interface provides:
* the ability to test application networking code without use of sockets, threads
or subprocesses
* clean separation of application code and low-level networking code
* a fairly simple inheritence free set of networking APIs
* an event-based framework that makes it easy to handle many simultaneous connections
while still supporting an imperative programming style.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13