forked from rthalley/dnspython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cope with 64-bit Python on Windows passing the wrong value for the un…
…bounded slice constant.
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2014-07-24 Bob Halley <[email protected]> | ||
|
||
* The 64-bit version of Python on Windows has sys.maxint set to 2^31-1, | ||
yet passes 2^63-1 as the "unspecified bound" value in slices. | ||
This is a bug in Python as the documentation says the unspecified | ||
bound value should be sys.maxint. We now cope with this. Thanks to | ||
Matthäus Wander for reporting the problem. | ||
|
||
2014-06-21 Bob Halley <[email protected]> | ||
|
||
* When reading from a masterfile, if the first content line started | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters