Skip to content

Commit acd8872

Browse files
authored
Docs (#217)
* Updated docs * Updated test
1 parent 221e2fd commit acd8872

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

doc/installation.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,7 @@ To use the built packages, install via the system's package manager, for example
4444
Conda package
4545
===============
4646

47-
A `conda <https://conda.io/miniconda.html>`_ package is available in the ``conda-forge`` channel.
48-
49-
To install, run the following.
50-
51-
.. code-block:: shell
52-
53-
conda install -c conda-forge ssh2-python
47+
No longer built.
5448

5549
Installation from Source
5650
==========================

tests/test_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ def test_read_line_bad_data(self):
6161
linesep, new_line_pos = find_eol(b"", 0)
6262
self.assertEqual(linesep, -1)
6363
self.assertEqual(new_line_pos, 0)
64-
linesep, new_line_pos = find_eol(b'\n', 0)
64+
linesep, new_line_pos = find_eol(b"\n", 0)
6565
self.assertEqual(linesep, 0)
6666
self.assertEqual(new_line_pos, 1)
67-
linesep, new_line_pos = find_eol(b'\r\n', 0)
67+
linesep, new_line_pos = find_eol(b"\r\n", 0)
6868
self.assertEqual(linesep, 0)
6969
self.assertEqual(new_line_pos, 2)
70-
linesep, new_line_pos = find_eol(b'\r', 0)
70+
linesep, new_line_pos = find_eol(b"\r", 0)
7171
self.assertEqual(linesep, -1)
7272
self.assertEqual(new_line_pos, 0)

0 commit comments

Comments
 (0)