mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-09 20:28:00 +08:00
MAINT: Removed unused module
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
import re
|
||||
|
||||
|
||||
_symbol_delimiter_regex = re.compile(r'[./\-_]')
|
||||
|
||||
|
||||
def split_nasdaq(symbol):
|
||||
sym = re.replace(_symbol_delimiter_regex, '', symbol)
|
||||
return sym[:4], sym[4:]
|
||||
|
||||
|
||||
def split_nyse(symbol):
|
||||
return re.split(_symbol_delimiter_regex, symbol, maxsplit=1)
|
||||
Reference in New Issue
Block a user