Skip to content

Python312 support#47

Open
mlaghaee-bonline wants to merge 4 commits intoyola:masterfrom
bonline:python312_support
Open

Python312 support#47
mlaghaee-bonline wants to merge 4 commits intoyola:masterfrom
bonline:python312_support

Conversation

@mlaghaee-bonline
Copy link

No description provided.

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):
Copy link

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)
Copy link

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
Copy link

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
Copy link

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):
Copy link

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants