2019-08-04 20:49:13 +00:00
---
2020-09-21 19:37:42 +00:00
name: Issue Form - **Must fill in this form** with every new issue submitted.
2019-08-04 20:49:13 +00:00
about: This form contains the information needed to help you solve your problem
title: "[ Enhancement/Bug/Question] My problem is..."
labels: ''
assignees: ''
---
### Type of Issues (Enhancement, Error, Bug, Question)
### Operating System
### Python version
### PySimpleGUI Port and Version
2020-08-26 20:56:14 +00:00
Ports = tkinter, Qt, WxPython, Web
PySimpleGUI Version:
tkinter version:
You can get these by adding this to the top of your file and running it:
2020-03-03 15:15:23 +00:00
```python
import PySimpleGUI as sg
2020-08-26 20:56:14 +00:00
print(sg) # Location of your PySimpleGUI.py file
print(sg.version) # PySimpleGUI version number
print(sg.tclversion_detailed) # tkinter detailed version number (in PySimpleGUI version 4.29.0+)
print(sg.sys.version) # Python version number
```
The tkinter version number can be obtained using above code in version 4.29.0+. If your code is prior:
```python
print(sg.tkinter.Tcl().eval('info patchlevel'))
2020-03-03 15:15:23 +00:00
```
2019-08-04 20:49:13 +00:00
### Your Experience Levels In Months or Years
_________ Python programming experience
_________ Programming experience overall
2020-04-03 01:16:43 +00:00
_________ Have used another Python GUI Framework (tkinter, Qt, etc) previously (yes/no is fine)?
2019-08-04 20:49:13 +00:00
2019-08-04 20:54:36 +00:00
### You have completed these steps:
- [ ] Read instructions on how to file an Issue
- [ ] Searched through main docs http://www.PySimpleGUI.org for your problem
- [ ] Searched through the readme for your specific port if not PySimpleGUI (Qt, WX, Remi)
- [ ] Looked for Demo Programs that are similar to your goal http://www.PySimpleGUI.com
- [ ] Note that there are also Demo Programs under each port on GitHub
- [ ] Run your program outside of your debugger (from a command line)
- [ ] Searched through Issues (open and closed) to see if already reported
2020-06-04 17:36:30 +00:00
- [ ] Try again by upgrading your PySimpleGUI.py file to use the current one on GitHub. Your problem may have already been fixed but is not yet on PyPI.
2019-08-04 20:49:13 +00:00
2020-03-03 15:15:23 +00:00
### Description of Problem / Question / Details
2020-08-26 20:56:14 +00:00
2020-03-03 15:15:23 +00:00
### Code To Duplicate
2020-03-03 15:18:58 +00:00
A short program that isolates and demonstrates the problem (i.e. please don't paste a link to your 400 line program.... instead paste your 10 line program in full).
Yes, it is a pain to narrow down problems, but it's part of the debugging process. Help me help you by providing something that can be executed so that work on getting you a fix or a workaround can immediately begin.
This pre-formatted code block is all set for you to paste in your bit of code:
```python
import PySimpleGUI as sg
## Paste your code here
```