Skip to content
Snippets Groups Projects
Commit 3ff62e16 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

removed deprecationwarnings

parent e151185b
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ class Regexp(String):
following:
>>> class IPv6(Regexp):
>>> REGEXP = '(\A([0-9a-f]{1,4}:)' ...
>>> REGEXP = '(([0-9a-f]{1,4}:)' ...
"""
REGEXP = r'.*'
......@@ -334,7 +334,7 @@ def register_custom_descriptor(name: str):
>>> @register_custom_descriptor('ipv6')
>>> class IPv6(Regexp):
>>> REGEXP = '(\A([0-9a-f]{1,4}:)' ...
>>> REGEXP = '(([0-9a-f]{1,4}:)' ...
:param name: under which it is supposed to be invokable
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment