This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author John Belmonte
Recipients John Belmonte, Manjusaka, ethan.furman, hauntsaninja, hroncok, jbelmonte, pablogsal, veky
Date 2021-05-26.21:41:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1622065305.45.0.801769861173.issue44242@roundup.psfhosted.org>
In-reply-to
Content
Rather than make such masks containing unknown bits, this would be best practice if you want to use STRICT, correct?

NPTS_ROUND = 0x0
NPTS_CEIL = 0x1
NPTS_TRUNC = 0x2
NPTS_MASK = NPTS_ROUND | NPTS_CEIL | NPTS_TRUNC

Otherwise, if your input may have unknown bits, use CONFORM.
History
Date User Action Args
2021-05-26 21:41:45John Belmontesetrecipients: + John Belmonte, jbelmonte, ethan.furman, veky, hroncok, pablogsal, Manjusaka, hauntsaninja
2021-05-26 21:41:45John Belmontesetmessageid: <1622065305.45.0.801769861173.issue44242@roundup.psfhosted.org>
2021-05-26 21:41:45John Belmontelinkissue44242 messages
2021-05-26 21:41:45John Belmontecreate