Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-27 | Changelog re #2178 | Jeff Forcier | |
2023-01-27 | Tweak silly test constant to be a real word | Jeff Forcier | |
2023-01-27 | Tidy up codespellrc, revert s/keypair/key pair/ | Jeff Forcier | |
2023-01-27 | Revert "RF test to use "12345" and "to" instead of misspelling components" | Jeff Forcier | |
This reverts commit 5efa354ce9fff1217d22e52493d1442866821a7b. | |||
2023-01-25 | From the code review - fix wording in .codespellrc comment | Yaroslav Halchenko | |
Co-authored-by: Brian Skinn <brian.skinn@gmail.com> | |||
2023-01-24 | [DATALAD RUNCMD] Run codespell -w | Yaroslav Halchenko | |
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ | |||
2023-01-24 | RF test to use "12345" and "to" instead of misspelling components | Yaroslav Halchenko | |
to not upset codespell | |||
2023-01-24 | Basic codespell config file to skip common culprits | Yaroslav Halchenko | |
2023-01-24 | Harmonize into *args from *larg, *largs | Yaroslav Halchenko | |
Initially spotted since 'larg' was picked up by codespell as something possibly to fix to become 'large'. But realized that it is just an inconsistency. Had various uses: ❯ git grep '\*arg\>' | nl 1 paramiko/sftp_client.py: def _request(self, t, *arg): 2 paramiko/sftp_client.py: num = self._async_request(type(None), t, *arg) 3 paramiko/sftp_client.py: def _async_request(self, fileobj, t, *arg): 4 paramiko/sftp_server.py: def _response(self, request_number, t, *arg): ❯ git grep '\*largs\>' | nl 1 paramiko/sftp_server.py: *largs, 2 paramiko/sftp_server.py: self.server = sftp_si(server, *largs, **kwargs) 3 paramiko/sftp_si.py: def __init__(self, server, *largs, **kwargs): 4 paramiko/sftp_si.py: super().__init__(*largs, **kwargs) ❯ git grep '\*larg\>' | nl 1 paramiko/server.py: handler = handler_class(channel, name, self, *larg, **kwarg) 2 paramiko/transport.py: def set_subsystem_handler(self, name, handler, *larg, **kwarg): in addition to more conventional ❯ git grep '\*args\>' | nl 1 paramiko/_winapi.py: super().__init__(*args) 2 paramiko/_winapi.py: def __init__(self, *args, **kwargs): 3 paramiko/_winapi.py: super().__init__(*args, **kwargs) 4 paramiko/auth_handler.py: def _log(self, *args): 5 paramiko/auth_handler.py: return self.transport._log(*args) 6 paramiko/channel.py: def _check(self, *args, **kwds): 7 paramiko/channel.py: return func(self, *args, **kwds) 8 paramiko/channel.py: def _log(self, level, msg, *args): 9 paramiko/channel.py: self.logger.log(level, "[chan " + self._name + "] " + msg, *args) 10 paramiko/sftp.py: def _log(self, level, msg, *args): 11 paramiko/sftp.py: self.logger.log(level, msg, *args) 12 paramiko/sftp_client.py: def _log(self, level, msg, *args): 13 paramiko/sftp_client.py: self._log(level, m, *args) 14 paramiko/transport.py: def _log(self, level, msg, *args): 15 paramiko/transport.py: self.logger.log(level, msg, *args) 16 tests/__init__.py: def _test_under_locale(testself, *args, **kwargs): 17 tests/__init__.py: return test_method(testself, *args, **kwargs) 18 tests/test_client.py: def __init__(self, *args, **kwargs): 19 tests/test_client.py: super().__init__(*args, **kwargs) 20 tests/test_config.py: def inner(command, *args, **kwargs): 21 tests/test_packetizer.py: def wrapper(*args, **kwargs): 22 tests/test_packetizer.py: result = func(*args, **kwargs) | |||
2023-01-20 | Massage SSHClient.connect exception-raising docstring | Jeff Forcier | |
- Sphinx Python domain can link to non-stdlib exception classes inside the `:raises:` fieldlist now! yay!! - Add explicit mention of 'can raise NoValidConnectionsError', which was never added when the latter was created. Was still technically correct (it is a subclass of socket.error) but that is not the best kind of correct, after all. | |||
2023-01-20 | newer Releases doesn't work well under latex yet :( | Jeff Forcier | |
2023-01-20 | Cut 3.0.0 | Jeff Forcier | |
2023-01-20 | 3.0-related changelog cleanup | Jeff Forcier | |
2023-01-20 | Docstring and changelog tweaks, thanks @bskinn! | Jeff Forcier | |
2023-01-18 | blacken | Jeff Forcier | |
2023-01-18 | Add 3-only classifier, thanks @hugovk! | Jeff Forcier | |
2023-01-18 | Update Python version mention in README | Jeff Forcier | |
2023-01-18 | Streamline copyright string | Jeff Forcier | |
2023-01-18 | Intersphinx to py36 not py27 | Jeff Forcier | |
2023-01-18 | Handpick remaining-ly relevant changes from #2110 | Jeff Forcier | |
Also make 'em f-strings, which AFAIK should be comparable Closes #2110 | |||
2023-01-16 | Changelog re #2165 | Jeff Forcier | |
2023-01-16 | Merge branch '2165-int' into 3.0 | Jeff Forcier | |
2023-01-16 | Stop ignoring warnings in the test suite for now | Jeff Forcier | |
Most of what we put this in for is gone as we now use newer versions of most dependencies. The few that remain are acceptable levels of noise or only on certain versions (eg py36). | |||
2023-01-16 | Break up a big int literal | Jeff Forcier | |
We could do this on a LOT of hex and similar literals, but that's a lot of work for little gain, let's just do that organically over time instead. | |||
2023-01-16 | Nuke retry_on_signal, pointless on modern Py3 | Jeff Forcier | |
Additionally, other bits of code that retry EINTR can similarly just go away. | |||
2023-01-16 | Stop stripping ProxyCommand none, make it None | Jeff Forcier | |
Also apparently the old, old test for this had the wrong issue number in it :( | |||
2023-01-16 | flake8 | Jeff Forcier | |
2023-01-16 | Nuke unused private method | Jeff Forcier | |
2023-01-16 | Punt a bunch of backwards incompatible TODOs to 4.0 | Jeff Forcier | |
2023-01-16 | Nuke now extraneous chmod | Jeff Forcier | |
2023-01-16 | Switch an os.open call to use kwargs now that we're py3 only | Jeff Forcier | |
Also shuffle comments around to be more local to subjects. | |||
2023-01-16 | blacken | Jeff Forcier | |
2023-01-16 | well that's just super()! | Jeff Forcier | |
2023-01-16 | No more (object)ions | Jeff Forcier | |
2023-01-16 | s/%/fstrings/g | Jeff Forcier | |
Except in one spot where it was too complicated to bother for now XD | |||
2023-01-16 | Twiddle a test to not shadow hex builtin (and nuke %) | Jeff Forcier | |
2023-01-16 | Invoke 2 is now out | Jeff Forcier | |
2023-01-13 | flake8/black | Jeff Forcier | |
2023-01-12 | No more PKey.__cmp__ | Jeff Forcier | |
2023-01-12 | Can't actually use a set here as it will destroy ordering | Jeff Forcier | |
2023-01-12 | Swap around __bytes__/__str__ for some classes | Jeff Forcier | |
Plus related updates to tests, docstrings, changelog | |||
2023-01-12 | Start fixing up blatantly wrong-under-py3 docstring types | Jeff Forcier | |
2023-01-12 | Upcoming alabaster release with modern sphinx stylesheet fix | Jeff Forcier | |
2023-01-12 | Modern sphinx autodoc settings | Jeff Forcier | |
2023-01-12 | We live in the future now | Jeff Forcier | |
2023-01-12 | Update a bunch of no/low impact python2/3 references/comments | Jeff Forcier | |
2023-01-12 | No need for passthru dunder-init in Py3-only dict subclasses yey | Jeff Forcier | |
2023-01-12 | Nix setup.cfg | Jeff Forcier | |
2023-01-12 | Last spot of six removal | Jeff Forcier | |
2023-01-11 | flake8 | Jeff Forcier | |