We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There might be a good reason for this - just adding in case it's of use.
From #1198 and setup.py it seems python 2 isn't supported, but documentation here : https://www.psycopg.org/docs/advanced.html#asynchronous-notifications still uses print instead of print( ... )
setup.py
print
print( ... )
The following remain in doc/:
doc/
src/usage.rst 198:attack to database servers. Before continuing, please print `this page`__ as a 410: >>> print u, type(u) 421: >>> print conn.encoding 426: >>> print x, type(x), repr(x) 433: >>> print type(x), repr(x) 445: >>> print x, type(x), repr(x) src/cursor.rst 295: ... print record src/module.rst 171: >>> print e.pgerror src/advanced.rst 229: >>> print type(point), point.x, point.y 287: print "Waiting for notifications on channel 'test'" 290: print "Timeout" 295: print "Got NOTIFY:", notify.pid, notify.channel, notify.payload
The text was updated successfully, but these errors were encountered:
638be85
Fixed, thank you
Sorry, something went wrong.
No branches or pull requests
There might be a good reason for this - just adding in case it's of use.
From #1198 and
setup.py
it seems python 2 isn't supported, but documentation here : https://www.psycopg.org/docs/advanced.html#asynchronous-notifications still usesprint
instead ofprint( ... )
The following remain in
doc/
:The text was updated successfully, but these errors were encountered: