In my python program, when I send the user to create a gmail account by use of the webbrowser module, python displays:
"Please enter your Gmail username: Created new window in existing browser session."
Is there any way to get rid of "created new window in existing browser session", as it takes up the space where the user types in their Gmail account.
The code for this is:
webbrowser.open('https://www.google.com/accounts/NewAccount?service=mail')
gmail_user = raw_input('Please enter your Gmail username: ')
EDIT: After trying out both of Alex Martelli's suggestions, the code is: http://pastebin.com/3uu9QS4A
EDIT 2: I have decided just to tell users to go to the gmail registration page instead of actually sending them there, as that is much simpler to do and results in no (currently-unsolvable-by-me) errors.