equal
deleted
inserted
replaced
42 |
42 |
43 def __init__(self, *args, **kw): |
43 def __init__(self, *args, **kw): |
44 timestamp = None |
44 timestamp = None |
45 if 'timestamp' in kw: |
45 if 'timestamp' in kw: |
46 timestamp = kw.pop('timestamp') |
46 timestamp = kw.pop('timestamp') |
47 if timestamp == None: |
47 if timestamp is None: |
48 self.timestamp = time.time() |
48 self.timestamp = time.time() |
49 else: |
49 else: |
50 self.timestamp = timestamp |
50 self.timestamp = timestamp |
51 gzip.GzipFile.__init__(self, *args, **kw) |
51 gzip.GzipFile.__init__(self, *args, **kw) |
52 |
52 |