asweigart / PyMsgBox

Simple, cross-platform, pure Python module to display message boxes, and just message boxes.
BSD 3-Clause "New" or "Revised" License
59 stars 18 forks source link

documentation not correct? #7

Open nbroderick-code opened 4 years ago

nbroderick-code commented 4 years ago

the documentation says defaultValue, but it is just default.

from pymsgbox import alert, confirm, prompt, password

alert(text='', title='', button='OK')
a = confirm(text='', title='', buttons=['OK', 'Cancel'])
print(a)
a = prompt(text='', title='', default='')
print(a)
a = password(text='', title='', default='', mask='*')
print(a)
ghost commented 3 years ago

thanks!

EliezerRamirezRuiz commented 1 year ago

Oh thanks bro, I had that problem and don't understand why. it was a basic problem, I hope you have a good year.