Skip to content

Commit 1b90ef1

Browse files
committed
asyncio: Document version constraints
Showing the version limits for the example and the module. There are no explicit sys_version checks in place to give a better error message because a Python < 3.5 would fail with an ImportError at the mpd.asyncio module or the example code before it could execute that check.
1 parent 64eef0f commit 1b90ef1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

examples/summary.txt

+3
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ ExampleStats Get general information of your MPD server 2009-09-12
2222
ExampleStickers A command-line client for manipulating and querying stickers
2323
2010-12-18
2424
Examples Some example scripts to show how to play with python-mpd 2010-12-18
25+
26+
The asyncio_example.py shows how MPD can be used with the asyncio idioms; it
27+
requires at least Python 3.5 to run.

mpd/asyncio.py

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
pushers).
1515
1616
Command lists are currently not supported.
17+
18+
19+
This module requires Python 3.5.2 or later to run.
1720
"""
1821

1922
import asyncio

0 commit comments

Comments
 (0)