I was debugging some code using isinstance() to make sure the correct object
was been passed to the method and came across something that is really ticking
me off.
I have a class called 'Jitem' in its own file called 'jitem.py'. It's part of a
package called 'jukebox'. I also have '__all__' th
On Tuesday, November 20, 2012 6:03:47 PM UTC-5, Ian wrote:
> On Tue, Nov 20, 2012 at 2:49 PM, Daniel Klein wrote:
>
> > With the assistance of this group I am understanding unicode encoding issues
>
> > much better; especially when handling special characters that are outside of
>
> > the ASCII
On Friday, November 9, 2012 5:11:12 PM UTC-5, Ian wrote:
> On Fri, Nov 9, 2012 at 2:46 PM, danielk wrote:
>
> > D:\home\python>pytest.py
>
> > Traceback (most recent call last):
>
> > File "D:\home\python\pytest.py", line 1, i
On Friday, November 9, 2012 4:34:19 PM UTC-5, Prasad, Ramit wrote:
> danielk wrote:
>
> >
>
> > The database I'm using stores information as a 3-dimensional array. The
> > delimiters between elements are
>
> > chr(252), chr(253) and chr(254). So a rec
On Friday, November 9, 2012 12:48:05 PM UTC-5, Dave Angel wrote:
> On 11/09/2012 12:17 PM, danielk wrote:
>
> > I'm converting an application to Python 3. The app works fine on Python 2.
>
> >
>
> > Simply put, this simple one-liner:
>
> >
>
&g
I'm converting an application to Python 3. The app works fine on Python 2.
Simply put, this simple one-liner:
print(chr(254))
errors out with:
Traceback (most recent call last):
File "D:\home\python\tst.py", line 1, in
print(chr(254))
File "C:\Python33\lib\encodings\cp437.py", line 19,