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

No description provided.

Comment thread opensrs/opensrsapi.py
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
Copy Markdown

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)

Comment thread opensrs/opensrsapi.py
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
Copy Markdown

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

Comment thread opensrs/xcp.py
import logging
try:
from urllib.request import urlopen, Request
from urllib.request import urlopen, Request, ProxyHandler, build_opener, install_opener
Copy link
Copy Markdown

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)

Comment thread opensrs/xcp.py
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
Copy Markdown

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)

Comment thread opensrs/xcp.py

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

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