ReadMeFirst
-
Before posting on the forum, it might be helpful to read these pages in the docs:
Formatting your post
The forum supports formatting with Markdown.
When posting code, used fenced codeblocks with the appropriate language tags:
python
for Python codeconsole
for code output
```python f = CurrentFont() for g in f: print g ``` ```console Traceback (most recent call last): File "<untitled>", line 2, in <module> TypeError: 'NoneType' object is not iterable ```