1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00
This commit is contained in:
Kevin McCarthy
2014-04-23 21:24:12 -10:00
parent e002aab999
commit 582b8eab51
3 changed files with 4 additions and 3 deletions

View File

@@ -16,6 +16,7 @@ from vcr.request import Request
from vcr.errors import CannotOverwriteExistingCassetteException
from . import compat
class VCRFakeSocket(object):
"""
A socket that doesn't do anything!
@@ -35,7 +36,7 @@ class VCRFakeSocket(object):
this descriptor and make sure it's not closed.
Return file descriptor 0 since that's stdin.
"""
return 0 # wonder how bad this is....
return 0 # wonder how bad this is....
def parse_headers_backwards_compat(header_dict):