diff --git a/NEWS b/NEWS index 50458e3dd0..a020f85851 100644 --- a/NEWS +++ b/NEWS @@ -155,6 +155,8 @@ Removed Functionality ``connection_state_remove`` handler can now be resolved with a less-confusing approach: see the ``Conn::register_removal_hook`` function. +- Python 2 is no longer supported. Python 3.5 is the new minimum requirement. + Deprecated Functionality ------------------------ diff --git a/src/strings.bif b/src/strings.bif index ecabe195c8..7e4bbfdfcd 100644 --- a/src/strings.bif +++ b/src/strings.bif @@ -1405,7 +1405,7 @@ function swap_case%(str: string%) : string %} ## Converts a string to Title Case. This changes the first character of each sequence of non-space characters -## in the string to be capitalized. See https://docs.python.org/2/library/stdtypes.html#str.title for more info. +## in the string to be capitalized. See https://docs.python.org/3/library/stdtypes.html#str.title for more info. ## ## str: The string to convert. ##