File tree 2 files changed +6
-4
lines changed 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 248
248
249
249
250
250
# Example configuration for intersphinx: refer to the Python standard library.
251
- intersphinx_mapping = {'http://docs.python.org/' : None }
251
+ intersphinx_mapping = {
252
+ 'py' : ('http://docs.python.org/3' , None )
253
+ }
Original file line number Diff line number Diff line change @@ -41,11 +41,11 @@ def ascii_lower(string):
41
41
This is used for `ASCII case-insensitive
42
42
<http://encoding.spec.whatwg.org/#ascii-case-insensitive>`_
43
43
matching of encoding labels.
44
- The same matching is also used, among others ,
44
+ The same matching is also used, among other things ,
45
45
for `CSS keywords <http://dev.w3.org/csswg/css-values/#keywords>`_.
46
46
47
- This is different from just using :meth:`unicode .lower`
48
- which will also affect non-ASCII characters,
47
+ This is different from the :meth:`~py:str .lower` method of Unicode strings
48
+ which also affect non-ASCII characters,
49
49
sometimes mapping them into the ASCII range:
50
50
51
51
>>> keyword = u'Bac\N{KELVIN SIGN}ground'
You can’t perform that action at this time.
0 commit comments