mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 05:06:36 +02:00
Fix python env issues.
This commit is contained in:
15
PythonHome/Lib/site-packages/setuptools/py27compat.py
Normal file
15
PythonHome/Lib/site-packages/setuptools/py27compat.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
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)
|
||||
Reference in New Issue
Block a user