Skip to content

Update packages #300

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

Merged
merged 3 commits into from
Oct 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install poetry
run: |
curl -O -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
python get-poetry.py -y
python get-poetry.py -y --version 1.0.10
echo "::set-env name=PATH::$HOME/.poetry/bin:$PATH"
rm get-poetry.py

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install poetry
run: |
curl -O -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
python get-poetry.py -y
python get-poetry.py -y --version 1.0.10
echo "::set-env name=PATH::$HOME/.poetry/bin:$PATH"
rm get-poetry.py

Expand Down
18 changes: 9 additions & 9 deletions libtmux/_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
itervalues = lambda d: d.itervalues()
iteritems = lambda d: d.iteritems()

from itertools import imap, izip

import ConfigParser as configparser
import cPickle as pickle
from cStringIO import StringIO as BytesIO
from StringIO import StringIO
import cPickle as pickle
import ConfigParser as configparser

from itertools import izip, imap

range_type = xrange

cmp = cmp

input = raw_input
from collections import MutableMapping
from string import lower as ascii_lowercase
import urlparse

from collections import MutableMapping
import urlparse

exec('def reraise(tp, value, tb=None):\n raise tp, value, tb')

Expand All @@ -60,9 +60,9 @@ def console_to_str(s):
itervalues = lambda d: iter(d.values())
iteritems = lambda d: iter(d.items())

from io import StringIO, BytesIO
import pickle
import configparser
import pickle
from io import BytesIO, StringIO

izip = zip
imap = map
Expand All @@ -71,9 +71,9 @@ def console_to_str(s):
cmp = lambda a, b: (a > b) - (a < b)

input = input
from string import ascii_lowercase
import urllib.parse as urllib
import urllib.parse as urlparse
from string import ascii_lowercase
from urllib.request import urlretrieve

console_encoding = sys.__stdout__.encoding
Expand Down
2 changes: 1 addition & 1 deletion libtmux/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from distutils.version import LooseVersion

from . import exc
from ._compat import console_to_str, str_from_console, MutableMapping
from ._compat import MutableMapping, console_to_str, str_from_console

logger = logging.getLogger(__name__)

Expand Down
Loading