[Ironpython-users] IronPython, Daily Digest 8/30/2011

2011-08-31 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New issue] xml.sax.make_parser() exception 2. [New comment] Py3k: Overload Resolution Changes (was System.BitConverter.GetBytes(long(...)) wrong?) --

[Ironpython-users] Here's a fun one...

2011-08-31 Thread Dino Viehland
This came up on an internal discussion, I thought it was fun, especially given that we all behave differently: Paste this into the REPL: class PS1(object): def __init__(self): self.count = 0 def __str__(self): self.count += 1 return "%d >>>" % self.count import sys sys.ps1 = PS1()