Hello Python friends, How do I split the below regex , so that it fits within the character limit of 79 words
pattern = [
r'(?P<p_owner>([0-9a-fA-F]+:[0-9a-fA-F]+:[0-9a-fA-F]+:[0-9a-fA-F]+:[0-9a-fA-F]+::HEAD))',
r'(?P<a_owner>(owner:\s+[0-9a-fA-F]+:[0-9a-fA-F]+:[0-9a-fA-F]+:[0-9a-fA-F]+:[0-9a-fA-F]+::HEAD))',
'.']
I am using Python 2.7 + Linux
Regards,
Ganesh
--
https://mail.python.org/mailman/listinfo/python-list
