@@ -53,16 +53,16 @@ custom `__str__` methods), there is no symetric operation that converts string c
53
53
`str() ` back to typed value. Module `strconv ` provides support for such symetric conversion
54
54
from/to string for any data type.
55
55
56
- Symetric string conversion is used by `~ firebird.base.config ` module, notably by
57
- `~ firebird.base.config.ListOption ` and `~ firebird.base.config.DataclassOption `. You can
56
+ Symetric string conversion is used by `firebird.base.config ` module, notably by
57
+ `firebird.base.config.ListOption ` and `firebird.base.config.DataclassOption `. You can
58
58
extend the range of data types supported by these options by registering convertors for
59
59
required data types.
60
60
61
61
Configuration definitions
62
62
=========================
63
63
64
64
Complex applications (and some library modules like `logging `) could be often parametrized
65
- via configuration. Module `~ firebird.base.config ` provides a framework for unified structured
65
+ via configuration. Module `firebird.base.config ` provides a framework for unified structured
66
66
configuration that supports:
67
67
68
68
* configuration options of various data type, including lists and other complex types
@@ -98,7 +98,7 @@ module.
98
98
The context-based logging:
99
99
100
100
* Adds context information (defined as combination of topic, agent and context string values)
101
- into `~ logging.LogRecord `, that could be used in logging message.
101
+ into `logging.LogRecord `, that could be used in logging message.
102
102
* Adds support for f-string message format.
103
103
* Allows assignment of loggers to specific contexts. The `LoggingManager ` class maintains
104
104
a set of bindings between `Logger ` objects and combination of `agent `, `context ` and `topic `
@@ -123,7 +123,7 @@ callable, execution time, return value, information about raised exception etc.
123
123
The trace logging is managed by `TraceManager `, that allows dynamic configuration of traced
124
124
callables at runtime.
125
125
126
- Trace supports configuration based on `~ firebird.base.config `.
126
+ Trace supports configuration based on `firebird.base.config `.
127
127
128
128
Registry for Google Protocol Buffer messages and enums
129
129
======================================================
@@ -136,7 +136,7 @@ protobuf messages or enum types, or to create message instances or enum values.
136
136
Callback systems
137
137
================
138
138
139
- Module `~ firebird.base.signal ` provides two callback mechanisms: one based on signals and
139
+ Module `firebird.base.signal ` provides two callback mechanisms: one based on signals and
140
140
slots similar to Qt signal/slot, and second based on optional method delegation similar to
141
141
events in Delphi.
142
142
0 commit comments