where to report wipy specific micropython issues?

Questions and discussion about The WiPy 1.0 board and CC3200 boards.
Target audience: Users with a WiPy 1.0 or CC3200 board.
Post Reply
PinkInk
Posts: 65
Joined: Tue Mar 11, 2014 3:42 pm

where to report wipy specific micropython issues?

Post by PinkInk » Sat Nov 14, 2015 3:21 pm

Not sure where to report this issue, which appears to be wipy specific?

The following;

Code: Select all

>>> class A:
...   def test(self, attr):
...     print(hasattr(self, attr))
...
>>> a=A()
>>> a.test('test')
True
>>> a.test(b'test')
False
works on the pyboard, but hangs the wipy at a.test(b'test') ...

User avatar
danicampora
Posts: 342
Joined: Tue Sep 30, 2014 7:20 am
Contact:

Re: where to report wipy specific micropython issues?

Post by danicampora » Sat Nov 14, 2015 4:31 pm

I guess the right place should be: https://github.com/micropython/micropython/issues

Could you please open an issue there? Thanks! :-)

PinkInk
Posts: 65
Joined: Tue Mar 11, 2014 3:42 pm

Re: where to report wipy specific micropython issues?

Post by PinkInk » Sat Nov 14, 2015 4:46 pm

Duh, that was too obvious ;)

Opened #1623

Post Reply