Issue 19995: %c, %o, %x, %X accept non-integer values instead of raising an exception (original) (raw)
Created on 2013-12-16 10:29 by ethan.furman, last changed 2022-04-11 14:57 by admin. This issue is now closed.
Messages (66)
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 10:29
Using Enum to illustrate:
--> class Grade(enum.Enum):
... A = 4
... B = 3
... C = 2
... D = 1
... F = 0
... def __index__(self):
... return self._value_
--> ['miserable'][Grade.F]
'miserable'
--> '%x' % Grade.F
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: %x format: a number is required, not Grade
--> hex(Grade.F)
'0x0'
I suggest that hex() and oct() have the same check that %x and %o do so that non-numbers are not representable as hex and octal.
While we're at it, we should do the same for bin(). Are there any others?
I'll create a patch once we have a decision on which way to solve this issue.
Author: STINNER Victor (vstinner) *
Date: 2013-12-16 10:44
Calls:
- hex()/oct() => PyNumber_ToBase() => PyNumber_Index().
- PyUnicode_Format() => mainformatlong() => PyNumber_Long()
I never understood the difference between "long" (int method) and "index" (index method). Is the difference on the behaviour of floating point numbers?
Author: Eric V. Smith (eric.smith) *
Date: 2013-12-16 13:11
It seems to me that by giving it an index method, you're saying it can be used as an integer. It's not surprising to me that hex(), oct(), and bin() would work with a Grade.F object. If anything, I'd say that more places should use index than currently do.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 15:42
Victor Stinner commented:
I never understood the difference between "long" (int method) and "index" (index method). Is the difference on the behaviour of floating point numbers?
index was originally added so that non-int integers, such as NumPy's int16, int32, etc, integer types could be used as indices and slices.
Now it means "if your type can produce a lossless integer, use index", which is why float and similar types don't define it.
The current meaning is unfortunate in that it is possible to want a type that can be used as an index or slice but that is still not a number, and in fact won't be used as a number in any scenario except bin(), hex(), and oct().
It seems to me that by having those three functions check that the argument is a number, and bailing if it is not, is a decent way to ensure consistency.
One question I do have, since I don't have NumPy installed, is what happens with:
--> "NumPy's int's work here? %x" % uint16(7)
Author: STINNER Victor (vstinner) *
Date: 2013-12-16 15:46
$ python Python 2.7.5 (default, Nov 12 2013, 16🔞42)
import numpy hex(numpy.uint16(257)) '0x101' "%x" % numpy.uint16(257) '101' x=numpy.uint16(257) x.int() 257 x.index() 257
Author: Stefan Krah (skrah) *
Date: 2013-12-16 15:49
Ethan Furman <report@bugs.python.org> wrote:
The current meaning is unfortunate in that it is possible to want a type that can be used as an index or slice but that is still not a number, and in fact won't be used as a number in any scenario except bin(), hex(), and oct().
memoryview, struct and probably also array.array accept index.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 16:00
Did I mention index is an unfortunate name for the current trend for this method?
Stefan Krah commented:
memoryview, struct and probably also array.array accept index.
When you say "accept index" do you mean for use as indices, or for use as values in the data structure itself?
Author: Stefan Krah (skrah) *
Date: 2013-12-16 16:17
Did I mention index is an unfortunate name for the current trend for this method?
Yes, but it's probably too late to change that now. Also, a fully precise name would be something like:
to_int_exact_iff_object_has_integer_nature :)
When you say "accept index" do you mean for use as indices, or for use as values in the data structure itself?
The latter, see Lib/test/test_buffer.py:2489 .
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 16:52
Hmmm...
Well, much as I hate to say it, it's sounding like the correct solution here is to have %o and %x work when index is available, instead of the other way around. :(
.format is not an issue because one must specify one's own if inheriting from object.
So the complete list of spcecifiers then is d, i, o, u, U, and c [1], and they should work if index works.
Are we in agreement?
[1] http://docs.python.org/dev/library/stdtypes.html#printf-style-string-formatting
Author: STINNER Victor (vstinner) *
Date: 2013-12-16 17:11
Are we in agreement?
Start maybe on writing unit tests :-)
IMO all int-like objects should behave the same. I don't see any good reason why hex(value) would succeed whereas "%x" % value fails. Both should succeed (or both should fail).
Author: Serhiy Storchaka (serhiy.storchaka) *
Date: 2013-12-16 17:16
Did I mention index is an unfortunate name for the current trend for this method? Yes, but it's probably too late to change that now. Also, a fully precise name would be something like:
to_int_exact_iff_object_has_integer_nature :)
Perhaps in future (may be in 4.0) index should be renamed to int and int to trunc.
Author: Eric V. Smith (eric.smith) *
Date: 2013-12-16 17:58
Yes, I think adding index to d, i, o, u, U, and c is the correct thing to do here.
Author: Guido van Rossum (gvanrossum) *
Date: 2013-12-16 18:18
Not so fast. Currently, even in Python 3, '%d' % 3.14 returns '3'. "Fixing" this will likely break a huge amount of code.
Author: Guido van Rossum (gvanrossum) *
Date: 2013-12-16 18:22
Also (the tracker email interface swallowed this):
it is possible to want a type that can be used as an index or slice but that is still not a number
I'm sorry, but this requirement is absurd. An index is a number. You have to make up your mind. (I know, in the context of the example that started this, this is funny, but I still stand by it.)
Finally, the correct name should perhaps have been integer but I don't see enough reason to change it now.
Author: Eric V. Smith (eric.smith) *
Date: 2013-12-16 18:34
If you were going to make this change, I'd think you'd have to look for index and then int. But I'll admit I haven't thought through all of the ramifications. It would be interesting to see what tests would break.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 20:20
Eric V. Smith commented:
If you were going to make this change, I'd think you'd have to look for index and then int.
Does the order matter? Are there any types (and should there be) that would have both and return different answers for each?
If not, pick an order, try one and, if that one fails, try the other.
Author: Antoine Pitrou (pitrou) *
Date: 2013-12-16 20:24
I'm with Guido: it doesn't really make sense to allow index but not int on a type. So trying index in str.format() sounds like a distraction.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 20:48
Antoine Pitrou opined:
I'm with Guido: it doesn't really make sense to allow index but not int on a type. So trying index in str.format() sounds like a distraction.
--> hex(3.14) # calls index Traceback (most recent call last): File "", line 1, in TypeError: 'float' object cannot be interpreted as an integer
--> '%x' % 3.14 # calls int '3'
One of those behaviours is wrong. Which?
Author: Antoine Pitrou (pitrou) *
Date: 2013-12-16 20:50
--> '%x' % 3.14 # calls int '3'
One of those behaviours is wrong. Which?
For '%x' and '%o', it probably doesn't make sense to convert the float to an int. (however, it does make sense for other formatters, such as '%d')
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 21:14
Ethan Furman previously stated:
So the complete list of spcecifiers then is d, i, o, u, U, and c [1], and they should work if index works.
Okay, so 'd' then should be considered a conversion operation, whilst the others should only work if the object is actually an integer type (which is implied by specifying index).
In other words
if %d or %u is specified, try int, then index (according to the docs, u is obsolete and identical to d)
if %i, %o, %x, %X, or %c is specified, try only index
Agreed?
Author: Antoine Pitrou (pitrou) *
Date: 2013-12-16 21:26
In other words
- if %d or %u is specified, try int, then index (according to the docs, u is obsolete and identical to d)
Again, I don't think trying index is useful.
- if %i, %o, %x, %X, or %c is specified, try only index
I think everything yielding a decimal output should work with floats (i.e. %i too).
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 22:11
Antoine, if I understand you correctly, you are saying that any type that defines index is an integer, and should therefore also define int, in which case Python can just use int and not worry about index?
Here's the problem with that:
--> '%x' % 3.14 '3'
While I am beginning to agree that an integer type needs to implement both int and index, it still remains true that Python needs to call index if what it needs is already a real, true int, and not just something that can be truncated or otherwise converted into an int -- such as float.
Author: Antoine Pitrou (pitrou) *
Date: 2013-12-16 22:15
Antoine, if I understand you correctly, you are saying that any type that defines index is an integer, and should therefore also define int, in which case Python can just use int and not worry about index?
... is an integer-like, yes.
While I am beginning to agree that an integer type needs to implement both int and index, it still remains true that Python needs to call index if what it needs is already a real, true int, and not just something that can be truncated or otherwise converted into an int -- such as float.
Of course.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-16 22:23
Antoine,
Does that mean you are reducing your previous statement of
So trying index in str.format() sounds like a distraction.
to "using index for %d, %i, and %u is not correct, but is correct for %c, %o, %x, and %X" ?
Author: Antoine Pitrou (pitrou) *
Date: 2013-12-16 22:24
Antoine,
Does that mean you are reducing your previous statement of
So trying index in str.format() sounds like a distraction.
to "using index for %d, %i, and %u is not correct, but is correct for %c, %o, %x, and %X" ?
Ah, yes, sorry for the confusion :)
Author: Serhiy Storchaka (serhiy.storchaka) *
Date: 2013-12-16 22:28
In addition, PyLong_AsLong() calls int, while PyLong_AsUnsignedLong() doesn't call int.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-17 07:09
Thank you, Victor and Serhiy, for your pointers into the code.
I'm hoping we have general agreement about %c, %o, %x, and %X and having them use index only (using int would open the door to float conversions).
I still have a question about %i, though. The docs say %u is exactly the same as %d and is therefore deprecated. The docs do not say thay %i is the same as %d, but the descriptions are the same.
Are %i and %d the same, or is there some difference?
Author: Guido van Rossum (gvanrossum) *
Date: 2013-12-17 15:42
AFAIK %i and %d are the same.
Author: Eric V. Smith (eric.smith) *
Date: 2013-12-17 15:47
Yes, looking through Objects/unicodeobject.c, 'u', 'i', and 'd' are treated the same everywhere.
Author: Terry J. Reedy (terry.reedy) *
Date: 2013-12-20 23:17
It seems to me that anything that is an 'integer' that can be turned into an int without loss of information (has .index) is logically a 'number' that can be turned into an int possibly with loss of information (has .int). So perhaps one of the following should be true:
The doc for .index specifies that def index 'must' be followed by int = index to make a coherent class. (So Ethan's Grade as written above would not qualify.)
The type constructor does this for us by adding int as an alias for index when the latter is present.
Every core usage of int looks for index also. Int() does not do this now, but '%d' does, so int(Grade.F) fails but int('%d' % Grade.f) works.
The exact details would depend on whether we want to allow (or at least bless) classes with int and index returning different ints.
The docs for bin/oct/hex(x) are clear. "Convert an integer number to a binary/octal/hexadecimal string. The result is a valid Python expression. If x is not a Python int object, it has to define an index() method that returns an integer." This should not change.
If the domain of %x is going to be a subset of of the domain of %d, it seems to me that the exclusion should be of non-integers (such as floats) rather than of non-int integers. Given things as they are, I would simply expand the domain of %x, etc, to that of %d without bothering to go through a deprecation process.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-23 13:29
Thank you everyone for increasing my understanding. :)
Terry J Reedy wrote:
[snip everything I now agree with, which is most of Terry's comment]
- Every core usage of int looks for index also. Int() does not do this now, but '%d' does [...]
The exact details would depend on whether we want to allow (or at least bless) classes with int and index returning different ints.
I think we should state that int and index are expected to return the same value (if both are defined) otherwise one is on one's own (otherwise known as: if it breaks, you own all the pieces ;) .
Given things as they are, I would simply expand the domain of %x, etc, to that of %d without bothering to go through a deprecation process.
This is not correct. hex(3.14)
raises a TypeError, and so should '%x' % 3.14
While Terry's option 2 would have to wait for 3.5, is there any reason why fixing the %-formating characters to use index instead of int can't go into 3.4? That portion seems to be clearly a bug and not an enhancement (the enhancement portions of this ticket can be separated out into another issue).
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-28 20:00
Enhancement portion split off into .
Attached patch includes doc change, tests, and code changes.
If I'm overstepping my bounds, I'm sure somebody will slap me with a fish. ;)
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-29 09:16
Ran full test suite; some errors came up in test_format from the following test lines:
testformat("%#x", 1.0, "0x1")
testformat("%x", float(big), "123456_______________", 6)
testformat("%o", float(big), "123456__________________________", 6)
testformat("%x", float(0x42), "42")
testformat("%o", float(0o42), "42")
Removed as float() is not supposed to be valid input.
Also fixed two memory leaks in unicodeobject from my changes, and a float->oct bug in tarfile.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-30 16:20
Better doc enhancement thanks to R. David Murray (thanks!).
Author: Eric V. Smith (eric.smith) *
Date: 2013-12-30 16:35
While I think this is an improvement, I don't think we can make this change in behavior at this stage in 3.4. Won't it have to go in 3.5?
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-30 16:51
I can see why we wouldn't want to make this change in a point release, but this is a feature release we're talking about and this seems like buggy behavior:
--> hex(3.14) Traceback (most recent call last): File "", line 1, in TypeError: 'float' object cannot be interpreted as an integer
--> '%x' % 3.14 '3'
Author: Eric V. Smith (eric.smith) *
Date: 2013-12-30 18:15
I agree the behavior is bad and should be fixed. But it's a new feature that will break existing code, and 3.4 is in beta, and therefore feature freeze. Unfortunately, I think this has to go into 3.5, unless you can get Larry to grant you an exception.
Author: R. David Murray (r.david.murray) *
Date: 2013-12-30 21:51
We don't usually break existing working code even if the output is wrong. If you want to make '%x' % 3.14, etc, raise an error, I think you we should go through a deprecation period first. The deprecation messages should, of course, be added now.
In other words, I would probably have voted against commit even if we weren't in beta yet. It's a bit borderline, since the output is wrong, but given that we are in beta I think we'd better go the deprecation route.
Author: Ethan Furman (ethan.furman) *
Date: 2013-12-30 21:57
I can live with the deprecation route. I'll create a patch today or tomorrow for that.
Author: Larry Hastings (larry) *
Date: 2013-12-31 01:13
I wouldn't call this a new feature--it's definitely a bug fix. So the "feature freeze" rule does not automatically apply. I definitely wouldn't permit this once we reach release candidates, but we aren't there yet.
I get the impression that it will break code, and it does seem kind of late. So I'm not saying yes or no yet. Let me think about it some more.
Author: Larry Hastings (larry) *
Date: 2014-01-04 18:44
I'm willing to risk it in 3.4. Can you check it in in the next twelve hours?
(Sorry for the short notice, it slipped my mind until just now.)
Author: Roundup Robot (python-dev)
Date: 2014-01-05 14:50
New changeset 2f81f0e331f6 by Ethan Furman in branch 'default': Issue19995: %o, %x, %X now only accept ints http://hg.python.org/cpython/rev/2f81f0e331f6
Author: Ethan Furman (ethan.furman) *
Date: 2014-01-05 14:54
I was travelling yesterday and wasn't sure about the time stamp. Looks like I missed the 12-hour cutoff. Let me know if I should backout the commit.
Author: Antoine Pitrou (pitrou) *
Date: 2014-01-05 15:13
Ethan, I thought we were going the deprecation route? This will break code.
Author: Antoine Pitrou (pitrou) *
Date: 2014-01-05 15:13
(also, there are typos: "shuld", "psuedo")
Author: Larry Hastings (larry) *
Date: 2014-01-05 15:20
Antoine: I made the call to bite the bullet and fix it. If that's a terrible idea we can change it before RC1. But from my (admittedly dim) understanding of the issue, we're going to have to fix this sooner or later, and sooner is probably better.
If by permitting this I've made a terrible mistake, could you do me a favor and summarize the issue and the alternatives so I can understand it?
Author: Larry Hastings (larry) *
Date: 2014-01-05 15:37
And, yes, Ethan's checkin missed the cutoff for beta 2.
Author: Ethan Furman (ethan.furman) *
Date: 2014-01-05 15:38
I think the code-breakage issue is that although this is a bug now, it did not use to be a bug. (Or maybe it was always a bug, but nobody noticed -- I don't know when hex() and oct() were introduced.)
Basically, having %o and %x work with floats was the intended behavior, as there were tests to make sure it worked.
But hex() and oct() were designed to only work with integer types, resulting in two ways to get an octal or hexadecimal string, one of which worked with non-ints, and one which didn't.
tarfile.py, for example, was using %o to convert a stat member (a timestamp?) from int/float to octal.
It is agreed that working with non-ints is no longer the intended behavior, but there is undoubtedly code that uses it -- especially in cases where the return value could be either an int or a float.
Author: R. David Murray (r.david.murray) *
Date: 2014-01-05 17:24
Given that even the stdlib used it, there is no question in my mind that a deprecation period is required. We don't just arbitrarily break peoples code on purpose, we give them at least a release in which to fix it first.
Author: Antoine Pitrou (pitrou) *
Date: 2014-01-05 17:30
Keep in mind that with new-style division, it's easy to get a float even if all your inputs are ints.
Author: Ethan Furman (ethan.furman) *
Date: 2014-01-05 18:15
I'll switch it to a deprecation warning instead sometime this week.
The changes to datamodel.rst and tarfile.py should stay, I think.
test_format and test_unicode will both verify current* behavior and check for the deprecation warning, and unicodeobject.c will generate the warning but keep current behavior.
Once 3.5 is tagged I'll put the updates to these three files there.
- By 'current' I mean accepting non-ints.
Author: Terry J. Reedy (terry.reedy) *
Date: 2014-01-05 19:13
Merely from reading the docs, including the hex() and {}.format sections, I consider the current '%x' % 1.5 == '1' a bug in that I would expect either a Type or Value Error or a hex fraction(!) ('1,8') matching the core of the output of float.hex(1.5). But given the history, I agree that a deprecation notice is needed first.
In 3.3 section 6.1.3.1. Format Specification Mini-Language, integer and float conversions are in separate tables, so no confusion is possible. In 3.3 section 4.7.2. printf-style String Formatting there is just one table with all conversion chars. I think the table would be clearer if it were somehow split into three sections: perhaps 3 otherwise blank rows containing 'integer', 'float', and 'other' in the Conversion column. (I don't know if this works for .rst tables.)
I think I would change the table for 3.4 with a note 8 that 'o', 'x', and 'X' currently accept floats by calling int() on the value, but that this implicit behavior is deprecated, so one should be explicit. The DeprecationWarning should also give the same remedy.
Author: Ethan Furman (ethan.furman) *
Date: 2014-01-10 04:40
Could somebody explain this?
ethan@media:~/source/python/issue19995_depr$ ./python -W error Python 3.4.0b1 (default:2f81f0e331f6+, Jan 9 2014, 20:30:18) [GCC 4.7.3] on linux Type "help", "copyright", "credits" or "license" for more information. >>> '%x' % 3.14 oxX no index depracation is fatal oxX no index depracation is fatal Traceback (most recent call last): File "", line 1, in DeprecationWarning: automatic int conversions have been deprecated >>>
ethan@media:~/source/python/issue19995_depr$ ./python -W message Invalid -W option ignored: invalid action: 'message' Python 3.4.0b1 (default:2f81f0e331f6+, Jan 9 2014, 20:30:18) [GCC 4.7.3] on linux Type "help", "copyright", "credits" or "license" for more information. >>> '%x' % 3.14 oxX no index depracation not fatal, attempting int conversion conversion with int successful '3' >>>
ethan@media:~/source/python/issue19995_depr$ ./python -W once Python 3.4.0b1 (default:2f81f0e331f6+, Jan 9 2014, 20:30:18) [GCC 4.7.3] on linux Type "help", "copyright", "credits" or "license" for more information. >>> '%x' % 3.14 oxX no index sys:1: DeprecationWarning: automatic int conversions have been deprecated depracation not fatal, attempting int conversion conversion with int successful '3' >>>
As you can see, with the -W error option it seems to go through the routine twice; does that mean the the '1' in 'line 1' is being specified as a float?
Author: Ethan Furman (ethan.furman) *
Date: 2014-01-11 04:18
For anyone paying really close attention, I've already switched the assertEquals to assertEqual. ;)
Author: Roundup Robot (python-dev)
Date: 2014-01-12 07:21
New changeset 22e55bd5583c by Ethan Furman in branch 'default': Issue19995: issue deprecation warning for non-integer values to %c, %o, %x, %X http://hg.python.org/cpython/rev/22e55bd5583c
Author: STINNER Victor (vstinner) *
Date: 2014-01-12 09:48
Typo in the C code: depracation :-)
Author: Roundup Robot (python-dev)
Date: 2014-01-12 16:42
New changeset cc8b21988efb by Ethan Furman in branch 'default': Issue19995: fixed typo; switched from test.support.check_warnings to assertWarns http://hg.python.org/cpython/rev/cc8b21988efb
Author: Ethan Furman (ethan.furman) *
Date: 2014-01-14 15:35
Depracation warning is in place for 3.4.
When 3.5 is tagged I'll switch it an error.
Author: Roundup Robot (python-dev)
Date: 2014-02-06 20:57
New changeset 775fb736b4b8 by Serhiy Storchaka in branch 'default': Catch deprecation warnings emitted when non-integers are formatted with %c, %o http://hg.python.org/cpython/rev/775fb736b4b8
Author: Roundup Robot (python-dev)
Date: 2014-03-19 15:39
New changeset 9120196b3114 by Ethan Furman in branch 'default': Issue19995: passing a non-int to %o, %c, %x, or %X now raises an exception http://hg.python.org/cpython/rev/9120196b3114
Author: Stefan Krah (skrah) *
Date: 2014-03-19 23:38
It looks like there's typo: Psuedo => Pseudo. (Unless the first one is an alternate spelling I'm not aware of.)
Author: Ethan Furman (ethan.furman) *
Date: 2014-03-19 23:55
No, apparently I am incapable of spelling pseudo correctly. I'll fix that along with the better error message:
%x format: an integer is required, not float
(variable, obviously ;)
Author: Roundup Robot (python-dev)
Date: 2014-03-21 13:39
New changeset e266525c9294 by Ethan Furman in branch 'default': Issue19995: more informative error message; spelling corrections; use operator.mod instead of mod http://hg.python.org/cpython/rev/e266525c9294
Author: Ethan Furman (ethan.furman) *
Date: 2014-03-21 20:48
Final status:
3.4 -> DeprecationWarning
3.5 -> TypeError
Author: Barry A. Warsaw (barry) *
Date: 2015-06-22 19:42
Found my first 3.5 breakage which I think is due to this.
from uuid import uuid4 '%.32x' % uuid4()
Author: Barry A. Warsaw (barry) *
Date: 2015-06-22 19:46
Fix:
'%.32x' % uuid4().int
History
Date
User
Action
Args
2022-04-11 14:57:55
admin
set
github: 64194
2015-06-22 19:46:27
barry
set
messages: +
2015-06-22 19:42:54
barry
set
nosy: + barry
messages: +
2014-03-21 20:48:10
ethan.furman
set
status: open -> closed
resolution: fixed
messages: +
stage: commit review -> resolved
2014-03-21 13:39:07
python-dev
set
messages: +
2014-03-19 23:55:23
ethan.furman
set
messages: +
2014-03-19 23:38:33
skrah
set
messages: +
2014-03-19 20:48:24
josh.r
set
nosy: + josh.r
2014-03-19 15:39:08
python-dev
set
messages: +
2014-02-15 15:09:45
ezio.melotti
set
nosy: + ezio.melotti
2014-02-06 20:57:14
python-dev
set
messages: +
2014-01-14 15:35:04
ethan.furman
set
messages: +
stage: patch review -> commit review
2014-01-12 16:42:30
python-dev
set
messages: +
2014-01-12 09:48:36
vstinner
set
messages: +
2014-01-12 07:21:03
python-dev
set
messages: +
2014-01-11 04🔞32
ethan.furman
set
files: + issue19995.stoneleaf.04.patch
messages: +
2014-01-10 04:40:48
ethan.furman
set
messages: +
2014-01-05 19:13:08
terry.reedy
set
messages: +
2014-01-05 18:15:13
ethan.furman
set
messages: +
versions: + Python 3.5
2014-01-05 17:30:01
pitrou
set
messages: +
2014-01-05 17:24:36
r.david.murray
set
messages: +
2014-01-05 15:38:03
ethan.furman
set
messages: +
2014-01-05 15:37:03
larry
set
messages: +
2014-01-05 15:20:53
larry
set
messages: +
2014-01-05 15:13:57
pitrou
set
messages: +
2014-01-05 15:13:02
pitrou
set
messages: +
2014-01-05 14:54:59
ethan.furman
set
messages: +
2014-01-05 14:50:39
python-dev
set
nosy: + python-dev
messages: +
2014-01-04 18:44:55
larry
set
messages: +
2013-12-31 01:13:51
larry
set
messages: +
2013-12-30 21:57:04
ethan.furman
set
messages: +
2013-12-30 21:51:51
r.david.murray
set
messages: +
2013-12-30 18:15:44
eric.smith
set
messages: +
2013-12-30 16:51:22
ethan.furman
set
messages: +
2013-12-30 16:35:30
eric.smith
set
messages: +
2013-12-30 16:25:31
r.david.murray
set
nosy: + r.david.murray
2013-12-30 16:20:06
ethan.furman
set
files: + issue19995.stoneleaf.03.patch
messages: +
2013-12-29 09:16:30
ethan.furman
set
files: + issue19995.stoneleaf.02.patch
messages: +
2013-12-28 20:00:12
ethan.furman
set
files: + issue19995.stoneleaf.01.patch
title: hex() and %x, oct() and %o do not behave the same -> %c, %o, %x, %X accept non-integer values instead of raising an exception
keywords: + patch
type: enhancement -> behavior
versions: + Python 3.4, - Python 3.5
messages: +
stage: test needed -> patch review
2013-12-23 13:29:09
ethan.furman
set
nosy: + larry
messages: +
2013-12-20 23:17:44
terry.reedy
set
nosy: + terry.reedy
messages: +
type: enhancement
stage: test needed
2013-12-17 15:47:33
eric.smith
set
messages: +
2013-12-17 15:42:47
gvanrossum
set
messages: +
2013-12-17 07:09:59
ethan.furman
set
messages: +
2013-12-16 22:28:05
serhiy.storchaka
set
messages: +
2013-12-16 22:24:33
pitrou
set
messages: +
2013-12-16 22:23:41
ethan.furman
set
messages: +
2013-12-16 22:15:20
pitrou
set
messages: +
2013-12-16 22:11:08
ethan.furman
set
messages: +
2013-12-16 21:26:27
pitrou
set
messages: +
2013-12-16 21:14:35
ethan.furman
set
messages: +
2013-12-16 20:50:18
pitrou
set
messages: +
2013-12-16 20:48:46
ethan.furman
set
messages: +
2013-12-16 20:38:19
Arfrever
set
nosy: + Arfrever
2013-12-16 20:24:40
pitrou
set
messages: +
2013-12-16 20:20:58
ethan.furman
set
messages: +
2013-12-16 18:34:18
eric.smith
set
messages: +
2013-12-16 18:22:21
gvanrossum
set
messages: +
2013-12-16 18🔞04
gvanrossum
set
messages: +
versions: + Python 3.5, - Python 3.4
2013-12-16 17:58:04
eric.smith
set
messages: +
2013-12-16 17:16:13
serhiy.storchaka
set
messages: +
2013-12-16 17:11:41
vstinner
set
messages: +
2013-12-16 16:52:22
ethan.furman
set
messages: +
2013-12-16 16:17:58
skrah
set
messages: +
2013-12-16 16:00:59
ethan.furman
set
messages: +
2013-12-16 15:49:00
skrah
set
messages: +
2013-12-16 15:46:59
vstinner
set
messages: +
2013-12-16 15:42:10
ethan.furman
set
messages: +
2013-12-16 13:11:38
eric.smith
set
nosy: + eric.smith
messages: +
2013-12-16 10:44:42
vstinner
set
nosy: + vstinner
messages: +
2013-12-16 10:29:04
ethan.furman
create