source: trunk/src/allmydata/immutable/downloader/common.py

Last change on this file was 1cfe843d, checked in by Alexandre Detiste <alexandre.detiste@…>, at 2024-02-22T23:40:25Z

more python2 removal

  • Property mode set to 100644
File size: 325 bytes
Line 
1"""
2Ported to Python 3.
3"""
4
5(AVAILABLE, PENDING, OVERDUE, COMPLETE, CORRUPT, DEAD, BADSEGNUM) = \
6 ("AVAILABLE", "PENDING", "OVERDUE", "COMPLETE", "CORRUPT", "DEAD", "BADSEGNUM")
7
8class BadSegmentNumberError(Exception):
9    pass
10class WrongSegmentError(Exception):
11    pass
12class BadCiphertextHashError(Exception):
13    pass
Note: See TracBrowser for help on using the repository browser.