mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
15 lines
306 B
Python
15 lines
306 B
Python
"""
|
|
Compatibility Support for Python 2.7 and earlier
|
|
"""
|
|
|
|
import sys
|
|
|
|
def get_all_headers(message, key):
|
|
"""
|
|
Given an HTTPMessage, return all headers matching a given key.
|
|
"""
|
|
return message.get_all(key)
|
|
|
|
if sys.version_info < (3,):
|
|
def get_all_headers(message, key):
|
|
return message.getheaders(key)
|