Where can I get the new version of python-mode for emacs?

2005-07-04 Thread Marcio Rosa da Silva
Hi all, My first try on using RST to write an email. so I can (will) make mistakes :-) I am experiencing the problem shown in this thread_ of the `python-mode`_ discussion list hosted at SourceForge. .. _thread: https://sourceforge.net/tracker/?func=detail&atid=581349&aid=1215039&group_id=869

Re: Order of elements in a dict

2005-04-26 Thread Marcio Rosa da Silva
Thanks for the help! Marcio -- http://mail.python.org/mailman/listinfo/python-list

Order of elements in a dict

2005-04-26 Thread Marcio Rosa da Silva
Hi! In dictionaries, unlinke lists, it doesn't matter the order one inserts the contents, elements are stored using its own rules. Ex: >>> d = {3: 4, 1: 2} >>> d {1: 2, 3: 4} So, my question is: if I use keys() and values() it will give me the keys and values in the same order? In other words,