Search found 6 matches

by Jim Battle
Mon Jun 02, 2014 7:56 am
Forum: Development of MicroPython
Topic: Micropythons parsing stratergy?
Replies: 1
Views: 3507

Re: Micropythons parsing stratergy?

Kickstarter update #8 had some info on this

https://www.kickstarter.com/projects/21 ... sts/669549

Skip the first few paragraphs, which talk about stretch goals, and then you find the technical content.
by Jim Battle
Thu May 29, 2014 6:06 pm
Forum: General Discussion and Questions
Topic: where to post bugs?
Replies: 3
Views: 5030

Re: where to post bugs?

Thanks for the approval. I'll be less antsy in the future.
by Jim Battle
Thu May 29, 2014 1:36 pm
Forum: General Discussion and Questions
Topic: where to post bugs?
Replies: 3
Views: 5030

where to post bugs?

Last night I posted a bug report -- example code and its obviously broken output. It was approved, and later I made a small edit to the example code to reduce confusion. And now I don't see the post at all. Either the edit somehow killed the post, or someone killed the post as perhaps it wasn't in t...
by Jim Battle
Thu May 29, 2014 4:29 am
Forum: General Discussion and Questions
Topic: language barfs?
Replies: 3
Views: 5222

Re: language barfs?

I just noticed that the function is named "primes" and there is a local array also named "primes." I'm not sure if this is strictly legal, but in case it was causing confusion, I renamed the function to "list_primes". The code produces the same failure as before.
by Jim Battle
Thu May 29, 2014 3:36 am
Forum: General Discussion and Questions
Topic: language barfs?
Replies: 3
Views: 5222

language barfs?

I just received my micropython borad today and it works -- the little accelerometer demo to drive the LEDs works, I can enter commands at the REPL and all is good so far. To give it something more to chew on, I wrote this main.py: import math import pyb def list_primes(): num_primes = 1 print("prime...