-
Notifications
You must be signed in to change notification settings - Fork 14
Python312 support #47
New issue
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
base: master
Are you sure you want to change the base?
Conversation
| MSG_ALREADY_RENEWED_SANDBOX = 'Domain Already Renewed' | ||
|
|
||
| def __init__(self, host, port, username, private_key, default_timeout): | ||
| def __init__(self, host, port, username, private_key, default_timeout, proxy=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E501 line too long (87 > 80 characters)
| def _get_channel(self): | ||
| return XCPChannel(self.host, self.port, self.username, | ||
| self.private_key, self.default_timeout) | ||
| self.private_key, self.default_timeout, proxy=self.proxy) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E128 continuation line under-indented for visual indent
| import logging | ||
| try: | ||
| from urllib.request import urlopen, Request | ||
| from urllib.request import urlopen, Request, ProxyHandler, build_opener, install_opener |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E501 line too long (91 > 80 characters)
| from urllib.request import urlopen, Request, ProxyHandler, build_opener, install_opener | ||
| except ImportError: | ||
| from urllib2 import urlopen, Request | ||
| from urllib2 import urlopen, Request, ProxyHandler, build_opener, install_opener |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E501 line too long (84 > 80 characters)
|
|
||
| class XCPChannel(object): | ||
| def __init__(self, host, port, username, private_key, default_timeout): | ||
| def __init__(self, host, port, username, private_key, default_timeout, proxy=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E501 line too long (87 > 80 characters)
No description provided.