Skip to content

Commit 973ddab

Browse files
committed
docs(CHANGES): Update to reflect #384 improvement
1 parent 96c2ed5 commit 973ddab

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

CHANGES

+9
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@ $ pip install --user --upgrade --pre libtmux
3434

3535
- `retry()`: Add deprecation warning. This will be removed in 0.13.x ({issue}`368`, {issue}`372`)
3636
- New function `retry_until()`: Polls a callback function for a set period of time until it returns `True` or times out. By default it will raise {exc}`libtmux.exc.WaitTimeout`, with `raises=False` it will return `False`. Thank you @categulario! ({issue}`368`, {issue}`372`)
37+
- {issue}`384` Chore: Use absolute modules rather than root-level to avoid cyclic imports.
38+
39+
```python
40+
# Bad / Old
41+
from libtmux import Server
42+
43+
# Good / New
44+
from libtmux.server import Server
45+
```
3746

3847
### Internals
3948

0 commit comments

Comments
 (0)