-
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
-
zope-zc.ngi-2.0.1-1.lbn19.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 19
-
zope-zc.ngi-2.0.1-1.lbn25.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 25
-
zope-zc.parse_addr-1.0.0-1.lbn13.noarch
Parse network addresses of the form: HOST:PORT
>>> import zc.parse_addr
>>> zc.parse_addr.parse_addr('1.2.3.4:56')
('1.2.3.4', 56)
It would be great if this little utility function was part of the socket module.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 13
-
zope-zc.parse_addr-1.0.0-1.lbn19.noarch
Parse network addresses of the form: HOST:PORT
>>> import zc.parse_addr
>>> zc.parse_addr.parse_addr('1.2.3.4:56')
('1.2.3.4', 56)
It would be great if this little utility function was part of the socket module.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19