Skip to content

Commit 3846bb7

Browse files
committed
pip3 -> pip
1 parent 161c1d7 commit 3846bb7

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

docs/index.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,17 @@ Library Installation
2323

2424
::
2525

26-
pip3 install aiohttp
26+
pip install aiohttp
2727

2828
For smart detection of *Content-Type* by client API you would like to
2929
install `chardet` also::
3030

31-
pip3 install chardet
31+
pip install chardet
3232

33-
*Optional*: To improve performances, you can install `Cython` **before** `aiohttp`::
33+
*Optional*: To improve performances, you can install `Cython`
34+
**before** `aiohttp`::
3435

35-
pip3 install cython
36+
pip install cython
3637

3738
Getting Started
3839
---------------

tests/test_multidict.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,14 @@ def test_upper(self):
707707
s = self.cls('a')
708708
self.assertIs(s, s.upper())
709709

710+
def test_upstr_is_not_str(self):
711+
712+
class A:
713+
def __repr__(self):
714+
return '<A repr>'
715+
716+
self.assertEqual('<A REPR>', self.cls(A()))
717+
710718

711719
class TestPyUpStr(_UpStrMixin, unittest.TestCase):
712720

0 commit comments

Comments
 (0)