Mercurial > p > roundup > code
comparison roundup/configuration.py @ 5386:fc97f1f4a7e3
Python 3 preparation: use sys.maxsize instead of sys.maxint.
Tool-generated patch.
| author | Joseph Myers <jsm@polyomino.org.uk> |
|---|---|
| date | Tue, 24 Jul 2018 22:20:20 +0000 |
| parents | 6fbb7d52e38f |
| children | 23b8e6067f7c |
comparison
equal
deleted
inserted
replaced
| 5385:e9fb7c539a52 | 5386:fc97f1f4a7e3 |
|---|---|
| 1110 (Option, "email_sending", "single", | 1110 (Option, "email_sending", "single", |
| 1111 "Controls the email sending from the nosy reactor. If\n" | 1111 "Controls the email sending from the nosy reactor. If\n" |
| 1112 "\"multiple\" then a separate email is sent to each\n" | 1112 "\"multiple\" then a separate email is sent to each\n" |
| 1113 "recipient. If \"single\" then a single email is sent with\n" | 1113 "recipient. If \"single\" then a single email is sent with\n" |
| 1114 "each recipient as a CC address."), | 1114 "each recipient as a CC address."), |
| 1115 (IntegerNumberOption, "max_attachment_size", sys.maxint, | 1115 (IntegerNumberOption, "max_attachment_size", sys.maxsize, |
| 1116 "Attachments larger than the given number of bytes\n" | 1116 "Attachments larger than the given number of bytes\n" |
| 1117 "won't be attached to nosy mails. They will be replaced by\n" | 1117 "won't be attached to nosy mails. They will be replaced by\n" |
| 1118 "a link to the tracker's download page for the file.") | 1118 "a link to the tracker's download page for the file.") |
| 1119 ), "Nosy messages sending"), | 1119 ), "Nosy messages sending"), |
| 1120 ) | 1120 ) |
