ISSUES
======

1. Non-ASCII strings print as garbage on the Windows console
----------------------------------------------------------------
Symptom:
    Running tests/07_address_book.py prints an address book entry as:
        Gyn�kologie
    instead of:
        Gynäkologie

Cause:
    This is NOT a library bug. The data returned by gweasysoap is a correct
    UTF-8 Python str. The problem is the default Windows console code page
    (cp1252) used by print(); it cannot represent the 'ä' character and
    substitutes the replacement glyph.

Workaround:
    Force UTF-8 output before printing, e.g. at the top of a script:
        import sys
        sys.stdout.reconfigure(encoding="utf-8")
    or run Python with:
        set PYTHONUTF8=1
    or switch the console code page:
        chcp 65001

Status:
    Open. Cosmetic only - affects console display, not the library data.
