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?)
--
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()