Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.072 X-Spam-Evidence: '*H*': 0.86; '*S*': 0.00; 'sfxlen:2': 0.11; 'python': 0.11; '>>>': 0.22; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'pass': 0.26; 'message- id:@mail.gmail.com': 0.30; 'class': 0.32; 'something': 0.35; 'received:google.com': 0.35; 'wrong': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; "'3'": 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:cc:content-type; bh=ryEqd1bwXdDF9Pd7xEz36QwB5J9Jl9a/ikrdVCMqvRM=; b=ABNbNSqeQ2ZNR8Xw7cKfQZnIHB9C+PdSPxLXoXx2cJ3Xffwz0sp4QC52dZYbwAXOoF Ua8KUmmqTEx/Ei7PUT5gfc0KHHOgKGGWVDaW2rDDJUxWi2UrES7CrDJIQiB8GcT2QkWM h6CWm7rVPiFXM9oxYZT6nIC972acK3CgSh3QD+aWdMEvgTKNA1144cze5r+IPGFEkUZ1 PsMNBBLMS2L7vmNrtPeLskuv8xfMEc1IDID7k6MteIz5sgy4WRzRZ970aAOj3q/tsQEk 9kq+RW9KD2XQXWsatHhNw6bbCRxPO+raEjeNJZmjr8Ri40jtWAE9SvUOI8By3HgsGYbJ lllw== MIME-Version: 1.0 X-Received: by 10.112.155.169 with SMTP id vx9mr5197660lbb.121.1431275692547; Sun, 10 May 2015 09:34:52 -0700 (PDT) Date: Sun, 10 May 2015 11:34:52 -0500 Subject: anomaly From: Mark Rosenblitt-Janssen To: python-list@python.org Cc: python-dev@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 8 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1431275701 news.xs4all.nl 2954 [2001:888:2000:d::a6]:51441 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:90295 Here's something that might be wrong in Python (tried on v2.7): >>> class int(str): pass >>> int(3) '3' Mark