Skip to content

Commit

Permalink
Merge pull request numba#5010 from stuartarchibald/wip/merge_string_prs
Browse files Browse the repository at this point in the history
merge string prs
  • Loading branch information
seibert authored Jan 3, 2020
2 parents 84ca05d + a3970ce commit 6189435
Show file tree
Hide file tree
Showing 4 changed files with 1,367 additions and 356 deletions.
51 changes: 31 additions & 20 deletions docs/source/reference/pysupported.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,35 +248,46 @@ The following functions, attributes and methods are currently supported:
* ``*`` (repetition of strings)
* ``in``, ``.contains()``
* ``==``, ``<``, ``<=``, ``>``, ``>=`` (comparison)
* ``.startswith()``
* ``.capitalize()``
* ``.casefold()``
* ``.center()``
* ``.count()``
* ``.endswith()``
* ``.endswith()``
* ``.expandtabs()``
* ``.isspace()``
* ``.isidentifier()``
* ``.find()``
* ``.center()``
* ``.ljust()``
* ``.rjust()``
* ``.split()``
* ``.join()``
* ``.lstrip()``
* ``.rstrip()``
* ``.strip()``
* ``.isupper()``
* ``.upper()``
* ``.index()``
* ``.isalnum()``
* ``.isalpha()``
* ``.isdecimal()``
* ``.isdigit()``
* ``.isidentifier()``
* ``.islower()``
* ``.lower()``
* ``.isnumeric()``
* ``.isprintable()``
* ``.zfill()``
* ``.rpartition()``
* ``.count()``
* ``.isspace()``
* ``.istitle()``
* ``.isupper()``
* ``.join()``
* ``.ljust()``
* ``.lower()``
* ``.lstrip()``
* ``.partition()``
* ``.replace()``
* ``.rfind()``
* ``.rindex()``
* ``.index()``
* ``.rjust()``
* ``.rpartition()``
* ``.rsplit()``
* ``.rstrip()``
* ``.split()``
* ``.splitlines()``
* ``.startswith()``
* ``.strip()``
* ``.swapcase()``
* ``.title()``
* ``.isalpha()``
* ``.isalnum()``
* ``.upper()``
* ``.zfill()``

Additional operations as well as support for Python 2 strings / Python 3 bytes
will be added in a future version of Numba. Python 2 Unicode objects will
Expand Down
Loading

0 comments on commit 6189435

Please sign in to comment.