Python Forum
Code capitalization being changed. - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html)
+--- Forum: Board (https://python-forum.io/forum-26.html)
+--- Thread: Code capitalization being changed. (/thread-1206.html)



Code capitalization being changed. - Mekire - Dec-13-2016

I just posted a thread with a code block like this:
CELL_SIZE = 50
MOVES = {"up": (0, -CELL_SIZE), "down": (0, CELL_SIZE),
         "left" : (-CELL_SIZE, 0), "right" : (CELL_SIZE, 0)} 
The variables above are intended to be constants and are capitalized but appear lowercase in my post.
When I go to edit it shows as I intended it.


RE: Code capitalization being changed. - snippsat - Dec-13-2016

I also notice this,an made a post about here.


RE: Code capitalization being changed. - metulburr - Dec-13-2016

We are at the mercy of stranac fixing his plugin


RE: Code capitalization being changed. - stranac - Dec-13-2016

I'm on my way home and I'm gonna fix this as soon as I'm there.
I feel really stupid about this particular bug, I have a line converting the content to lowercase, and I can't even imagine why I put it there...


RE: Code capitalization being changed. - Kebap - Dec-13-2016

Don't worry, weird stuff happens. Thanks for fixing it though, beautiful pony! :)