Update issue-form---must-fill-in-this-form-with-every-new-issue-submitted.md

This commit is contained in:
PySimpleGUI 2021-04-11 19:43:06 -04:00 committed by GitHub
parent 822de43ef4
commit e0e3b86614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 60 additions and 47 deletions

View File

@ -7,67 +7,80 @@ assignees: ''
--- ---
### Type of Issues (Enhancement, Error, Bug, Question) ### Type of Issue (Enhancement, Error, Bug, Question)
### Operating System
### Python version
### PySimpleGUI Port and Version
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:
```python
import PySimpleGUI as sg
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'))
```
### Your Experience Levels In Months or Years ----------------------------------------
_________ Python programming experience #### Operating System
_________ Programming experience overall
_________ Have used another Python GUI Framework (tkinter, Qt, etc) previously (yes/no is fine)?
### You have completed these steps:
- [ ] Read instructions on how to file an Issue
- [ ] Searched through main docs http://www.PySimpleGUI.org for your problem #### PySimpleGUI Port (tkinter, Qt, Wx, Web)
- [ ] 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
----------------------------------------
## Versions
Version information can be obtained by calling `sg.main_get_debug_data()`
Or you can print each version shown in ()
#### Python version (`sg.sys.version`)
#### PySimpleGUI Version (`sg.__version__`)
#### GUI Version (tkinter (`sg.tclversion_detailed`), PySide2, WxPython, Remi)
---------------------
#### Your Experience In Months or Years (optional)
Years Python programming experience
Years Programming experience overall
Have used another Python GUI Framework? (tkinter, Qt, etc) (yes/no is fine)
Anything else you think would be helpful?
---------------------
#### Troubleshooting
These items may solve your problem. Please check those you've done by changing - [ ] to - [X]
- [ ] Searched main docs for your problem www.PySimpleGUI.org
- [ ] Looked for Demo Programs that are similar to your goal Demos.PySimpleGUI.org
- [ ] If not tkinter - looked for Demo Programs for specific port
- [ ] For non tkinter - Looked at readme for your specific port if not PySimpleGUI (Qt, WX, Remi)
- [ ] Run your program outside of your debugger (from a command line) - [ ] Run your program outside of your debugger (from a command line)
- [ ] Searched through Issues (open and closed) to see if already reported - [ ] Searched through Issues (open and closed) to see if already reported Issues.PySimpleGUI.org
- [ ] 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. - [ ] Tried using the PySimpleGUI.py file on GitHub. Your problem may have already been fixed but not released
### Description of Problem / Question / Details #### Detailed Description
### Code To Duplicate
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. #### Code To Duplicate
A **short** program that isolates and demonstrates the problem (Do not paste your massive program, but instead 10-20 lines that clearly show the problem)
This pre-formatted code block is all set for you to paste in your bit of code: This pre-formatted code block is all set for you to paste in your bit of code:
```python ```python
import PySimpleGUI as sg
## Paste your code here # Paste your code here
``` ```
#### Screenshot, Sketch, or Drawing