# Abstract When naming a variable something that isn't ASCII, but is still a valid Python3 identifier, the variable doesn't show up in the symbols list.
## Problem Info ### Test case: ```python #!/usr/bin/env python3 # coding: utf-8 correct = bool() 对不对='对' if correct else '错' ``` Load up that file in Geany, then open the Symbols tab. ### What I expected to see "correct" and "对不对" both show up in the Symbols list. ### What happened Only "correct" shows up in the Symbols list. ## Extra info 1. <output>geany 1.27 (built on 2016-04-17 with GTK 2.24.30, GLib 2.48.0)<output> 2. OS: Ubuntu 16.04.1 LTS -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1337
