Bugs item #1649100, was opened at 2007-01-31 19:36 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1649100&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Parser/Compiler Group: Python 2.4 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Sascha Peilicke (lastmohican) Assigned to: Nobody/Anonymous (nobody) Summary: Arithmetics behaving strange Initial Comment: Hello, i just found some strange things going around, could you please tell me if this is desired: >>> 3 + 4 7 >>> 3 +- 4 -1 >>> 3 +-+ 4 -1 >>> 3 +-+- 4 7 >>> 3 +-+-+ 4 7 >>> 3 +-+-+- 4 -1 >>> 3 +-+-+-+ 4 -1 >>> 3 +-+-+-+- 4 7 This was found in Python 2.4.4c1. And also another one: >>> _ Traceback (most recent call last): File "<stdin>", line 1, in ? NameError: name '_' is not defined >>> 3 == 3 True >>> _ True >>> 3 3 >>> _ 3 So what the hell is '_' something very strange indeed. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1649100&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com