Python Toolbox 0.1 released

2012-06-10 Thread ram . rachum
Hi, I'm pleased to announce the first release of the Python Toolbox: http://pypi.python.org/pypi/python_toolbox/ The Python Toolbox is a collection of Python tools for various tasks. It contains: - ``python_toolbox.caching``: Tools for caching functions, class instances and properties.

Updated Cygwin Package: python-2.6.8-2

2012-06-10 Thread Jason Tishler
New News: === I have updated the version of Python to 2.6.8-2. The tarballs should be available on a Cygwin mirror near you shortly. The following are the changes since the previous release: o build against expat 2.1.0 so pyexpat builds cleanly:

[ANN] tperimeter 1.113 Released And Available

2012-06-10 Thread Tim Daneliuk
'tperimeter' Version 1.113 is released and available at: http://www.tundraware.com/Software/tperimeter/ The last public release was 1.112 What's New -- Changed the wrapper file rebuild logic to delete outstanding access requests independently of how often the script is run (either

PyDoc - Python Documentation Plugin for Eclipse

2012-06-10 Thread Alexey Gaidamaka
Greets! Since i'm new to Python, i've decided to create a handy plugin for Elipse SDK which is my primary dev environment. Practically the plugin is a simple html archive from python documentation website running inside Eclipse so you can call it using Eclipse help system. As for now it is

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread rusi
On Jun 9, 10:07 pm, Dietmar Schwertberger n...@schwertberger.de wrote: And you can than go in the code editor to that function and change the code to do whatever you want. Having to go there is already more work than I would expect. I would expect to go there e.g. by a double-click. This

Re: Compare 2 times

2012-06-10 Thread garabik-news-2005-05
t_texas tyev...@gmail.com wrote: On Jun 6, 7:50 am, loial jldunn2...@gmail.com wrote: I have a requirement to test the creation time of a file with the current time and raise a message if the file is  more than 15 minutes old. Platform is Unix. I have looked at using os.path.getctime for

Re: [Q] How to specify options for 'setup.py install' by environment variable?

2012-06-10 Thread Ned Deily
In article CAFTm5Rs18QJskcvMiEWyOsbifBDi6wrpuA9kKC_1t_C2t57R=a...@mail.gmail.com, Makoto Kuwata k...@kuwata-lab.com wrote: On Sun, Jun 10, 2012 at 11:55 AM, Ned Deily n...@acm.org wrote: In article caftm5rucoaztp89mbpw4utiska8zq58q9evjel1ofulbc-p...@mail.gmail.com,  Makoto Kuwata

PyDoc - Python Documentation Plugin for Eclipse

2012-06-10 Thread Alexey Gaidamaka
Greets! Since i'm new to Python, i've decided to create a handy plugin for Elipse SDK which is my primary dev environment. Practically the plugin is a simple html archive from python documentation website running inside Eclipse so you can call it using Eclipse help system. As for now it is

PyDoc - Python Documentation Plugin for Eclipse

2012-06-10 Thread Alexey Gaidamaka
Greets! Since i'm new to Python, i've decided to create a handy plugin for Elipse SDK which is my primary dev environment. Practically the plugin is a simple html archive from python documentation website running inside Eclipse so you can call it using Eclipse help system. As for now it is

Re: PyDoc - Python Documentation Plugin for Eclipse

2012-06-10 Thread Andrew Berg
On 6/10/2012 4:22 AM, Alexey Gaidamaka wrote: Practically the plugin is a simple html archive from python documentation website running inside Eclipse so you can call it using Eclipse help system. As for now it is pretty large (~7 mb), but i'm planning to optimize it in near future. Rather

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Arnaud Delobelle
On 10 June 2012 07:16, rusi rustompm...@gmail.com wrote: This is worth a read in this context: http://osteele.com/archives/2004/11/ides Interesting! I definitely fall nicely at one extreme of this dichotomy. Every time I've tried to use an IDE, it's made me feel inadequate and I've quickly

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Harald Hanche-Olsen
[becky_lewis bex.le...@gmail.com] Lisp and Clojure are functional languages. No, they're not. But you can (and often will) do quite a bit of functional programming in Lisp, as it lends itself quite naturally to that way of thinking. But in (Common) Lisp you also have CLOS, which is a rather

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Dietmar Schwertberger
Am 10.06.2012 08:16, schrieb rusi: This is worth a read in this context: http://osteele.com/archives/2004/11/ides So which language would you suggest to use next? ;-) I've read the article. It presents some nice ideas, but probably the author has not used Python before. Otherwise he would have

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread becky_lewis
My mistake about Lisp being purely functional (I have very little experience with common Lisp itself), though Clojure is. That doesn't change my point, to which you appear to agree, Lisp and Clojure teach folks a different way of approaching problems, which is always useful :) On Jun 10, 12:25 

looking for a python script disk/storage benchmark

2012-06-10 Thread tbaror
Hi All, I am started to write a utility (python 3.x) to test storage/disk benchmark , my thought were using binary buffered Io, but i would like to see if there any script out there written so i would use as template searching via Google found only one but not what exactly what i am looking for.

Re: Nexus Programming Language

2012-06-10 Thread Colin J. Williams
On 10/06/2012 1:45 AM, rusi wrote: On Jun 10, 7:46 am, Adam Campbellabcampbell...@gmail.com wrote: The Nexus programming language version 0.5.0 has been released. It is an object-oriented, dynamically-typed, reflective programming language, drawing from Lua and Ruby.www.nexuslang.org What

Another non blocking method in thread

2012-06-10 Thread Prashant
Hi, I have created a very simple client-server model using sockets. Server is created by sub classing threading.thread. The 'run' method is continuously listening for client's response. When server send a string to client, client response back by changing that string into uppercase. I would

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Matej Cepl
On 10/06/12 00:44, Yesterday Paid wrote: I'm planning to learn one more language with my python. Just my personal experience, but after passively learning many many languages, I came to the conclusion that I (and I suppose many others) am able to learn only one platform well. The point is

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Chris Angelico
On Sun, Jun 10, 2012 at 11:40 PM, Matej Cepl mc...@redhat.com wrote: Just my personal experience, but after passively learning many many languages, I came to the conclusion that I (and I suppose many others) am able to learn only one platform well. The point is that you are never interested in

Re: PyDoc - Python Documentation Plugin for Eclipse

2012-06-10 Thread Alexey Gaidamaka
On Sun, 10 Jun 2012 05:02:35 -0500, Andrew Berg wrote: On 6/10/2012 4:22 AM, Alexey Gaidamaka wrote: Practically the plugin is a simple html archive from python documentation website running inside Eclipse so you can call it using Eclipse help system. As for now it is pretty large (~7 mb),

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Paul Rubin
Matej Cepl mc...@redhat.com writes: The point is that you are never interested in learning *a language*, everybody who has at least some touch with programming can learn most languages in one session in the afternoon. Really, that's only if the new language is pretty much the same as the old

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Kevin Walzer
On 6/8/12 8:27 AM, Wolfgang Keller wrote: What GUI designer would come the closest to the way that Cocoa's Interface Builder works? I.e. is there any one (cross-platform) that allows to actually connect the GUI created directly to the code and make it available live in an IDE? If you're

Re: Nexus Programming Language

2012-06-10 Thread Rick Johnson
On Jun 10, 7:21 am, Colin J. Williams c...@ncf.ca wrote: On 10/06/2012 1:45 AM, rusi wrote: What does nexus have that python doesn't? Yeah I know this kind of question leads to flames but a brief glance at the about page does not tell me anything in this direction. It has a more complex

Re: Nexus Programming Language

2012-06-10 Thread Rick Johnson
On Jun 10, 12:45 am, rusi rustompm...@gmail.com wrote: On Jun 10, 7:46 am, Adam Campbell abcampbell...@gmail.com wrote: The Nexus programming language version 0.5.0 has been released. It is an object-oriented, dynamically-typed, reflective programming language, drawing from Lua and

Re: what gui designer is everyone using

2012-06-10 Thread Rick Johnson
On Jun 7, 4:18 pm, Kevin Walzer k...@codebykevin.com wrote: On 6/5/12 10:10 AM, Mark R Rivet wrote: I want a gui designer that writes the gui code for me. I don't want to write gui code. what is the gui designer that is most popular? None. I write GUI code by hand (Tkinter). I second that

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Rick Johnson
On Jun 8, 7:27 am, Wolfgang Keller felip...@gmx.net wrote: This whole cycle of design GUI-generate code-add own code to generated code-run application with GUI has always seemed very un-pythonic to me. A dynamic, interpreted language should allow to work in a more lively, direct way to build

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Matej Cepl
On 10/06/12 18:32, Paul Rubin wrote: Really, that's only if the new language is pretty much the same as the old ones, in which case you haven't really learned much of anything. Languages that use interesting new concepts are challenges in their own right. Well, I could at least passively read

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Rick Johnson
On Jun 9, 8:25 am, Dietmar Schwertberger n...@schwertberger.de wrote: Before anyone now writes Good GUIs are coded by hand: I agree, but for many purposes only simple GUIs are required and it should be possible to create these without studying manuals (on toolkit and GUI editor). It is

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Dietmar Schwertberger
(Sorry for posting without references to the previous messages, but it seems that many messages don't get through to the nntp server that I'm using.) Chris Angelico wrote (in two posts): There was a time when that was a highly advertisable feature - build XYZ applications without writing a

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Dietmar Schwertberger
Am 10.06.2012 21:36, schrieb Rick Johnson: It is possible. Try Tkinter for the get-you-from-a-to-b solution, or, wxPython if you like fog lamps, heated seats, and navigation systems. I prefer wx or Qt. The look and feel is one reason. But the fact that Tkinter is still the standard GUI toolkit

err: A cool new chatbot written and extensible in python

2012-06-10 Thread Guillaume BINET
Hi all, We have released a cool extensible chatbot for your development teams chatrooms. At my current company we have a ton of fun with it so we have decided to spread the love and release it as an open source project. Of course it is written and extensible in Python. Feel free to give it a

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Paul Rubin
Matej Cepl mc...@redhat.com writes: Well, I could at least passively read many languages (starting with Pascal, C, and unsuccessful attempt to learn Prolog, so even statically typed languages are not that mysterious to me), I wouldn't count Pascal or C as statically typed in any interesting

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Rick Johnson
On Jun 10, 2:36 pm, Rick Johnson rantingrickjohn...@gmail.com wrote: # # Or become a pro and create reusable objects! # class LE(tk.Frame):     def __init__(self, master, **kw):         tk.Frame.__init__(self, master)         self.l = tk.Label(self, **kw)         self.l.pack(side=LEFT)  

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Matej Cepl
On 10/06/12 22:40, Paul Rubin wrote: You might start with Abelson and Sussman's classic book: http://mitpress.mit.edu/sicp I know that, and it lies on my badtable for some time already, but I just never got enough excited about the idea yet. Python is just much more fun. Matěj --

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Paul Rubin
Matej Cepl mc...@redhat.com writes: I know that, and it lies on my badtable for some time already, but I just never got enough excited about the idea yet. Python is just much more fun. Here is an exercise from the book that you might like to try in Python:

Re: Passing ints to a function

2012-06-10 Thread Rick Johnson
On Jun 9, 3:29 am, Jussi Piitulainen jpiit...@ling.helsinki.fi wrote: Here's something you could have thought of for yourself even when you didn't remember that Python does have special built-in support for applying a function to a list of arguments: def five(func, args):    a, b, c, d, e =

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread Chris Angelico
On Mon, Jun 11, 2012 at 5:37 AM, Dietmar Schwertberger maill...@schwertberger.de wrote: Chris Angelico wrote (in two posts): There was a time when that was a highly advertisable feature - build XYZ applications without writing a single line of code!. I've seen it in database front-end

Re: Strange Problem with pythonw.exe

2012-06-10 Thread asa
Hello subscribers, I've recently encountered a strange problem with Python for Windows. I'm using Windows 7 Pro 64 Bit and Python 3.2.3 64 Bit (also tried 32 bit). The Problem is, that pythonw.exe does not work at all! Therefore no IDLE for me... But python.exe runs just fine. I ran

Re: [Q] How to specify options for 'setup.py install' by environment variable?

2012-06-10 Thread Makoto Kuwata
On Sun, Jun 10, 2012 at 3:51 PM, Ned Deily n...@acm.org wrote: Thank you Ned, but I can't find environment variable name on that page which is equivarent to '--install-scripts' or other options. Sorry, I wasn't clear.  Using the Distutils config files would be instead of setting environment

Re: Strange Problem with pythonw.exe

2012-06-10 Thread Terry Reedy
On 6/10/2012 7:39 PM, a...@vorsicht-bissig.de wrote: Thank you for your help. I found the problem at some other place. The registry tweaks didn't solve it. But I found the hint to look up my .idlerc folder. So the problem was entirely IDLE related (yes, it worked before). But it wasnt PyQt'S

Re: Pythonic cross-platform GUI desingers à la Interface Builder (Re: what gui designer is everyone using)

2012-06-10 Thread rusi
On Jun 10, 4:52 pm, Dietmar Schwertberger n...@schwertberger.de wrote: Am 10.06.2012 08:16, schrieb rusi: This is worth a read in this context:http://osteele.com/archives/2004/11/ides I've read the article. It presents some nice ideas, but probably the author has not used Python before.

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread rusi
On Jun 10, 6:40 pm, Matej Cepl mc...@redhat.com wrote: On 10/06/12 00:44, Yesterday Paid wrote: I'm planning to learn one more language with my python. Just my personal experience, but after passively learning many many languages, I came to the conclusion that I (and I suppose many others)

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Broad Liyn
在 2012年6月10日星期日UTC+8上午6时44分44秒,Yesterday Paid写道: I'm planning to learn one more language with my python. Someone recommended to do Lisp or Clojure, but I don't think it's a good idea(do you?) So, I consider C# with ironpython or Java with Jython. It's a hard choice...I like Visual

Re: which one do you prefer? python with C# or java?

2012-06-10 Thread Corey Richardson
On Sun, 10 Jun 2012 21:46:50 -0700 (PDT) Broad Liyn broadl...@gmail.com broadl...@gmail.com wrote: of course java is the best option in my opinion.There is no need to provide many evidences that java is better than c# because its advantages are really obvious. Not as obvious as you'd

[issue14850] The inconsistency of codecs.charmap_decode

2012-06-10 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: U+FFFE is documented as representing an undefined mapping, see http://docs.python.org/dev/c-api/unicode.html?highlight=charmap#PyUnicode_DecodeCharmap So the base string case is correct; the derived string implementation also needs to

[issue15042] Implemented PyState_AddModule, PyState_RemoveModule

2012-06-10 Thread Robin Schreiber
New submission from Robin Schreiber robin.schrei...@me.com: PEP 3121 suggests a new way of Module-initialization, where the module state is being wrapped inside a dedicate struct, which can be accessed at runtime via the PyState_FindModule method. For code outside the Init-method, there is no

[issue14850] The inconsistency of codecs.charmap_decode

2012-06-10 Thread Serhiy Storchaka
Serhiy Storchaka storch...@gmail.com added the comment: What is the use case for passing a string subclass to charmap_decode? Or in other words, how did you stumble upon the bug? I stumbled upon it, rewriting the charmap decoder (issue14874). Now charmap decoder processes the two cases -- a

[issue14850] The inconsistency of codecs.charmap_decode

2012-06-10 Thread Serhiy Storchaka
Serhiy Storchaka storch...@gmail.com added the comment: U+FFFE is documented as representing an undefined mapping, Yes, using U+FFFE for representing an undefined mapping in strings is normal, the question was about string subclasses. And if we will correct it for string subclasses, how far we

[issue14850] The inconsistency of codecs.charmap_decode

2012-06-10 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: U+FFFE is documented as representing an undefined mapping, Yes, using U+FFFE for representing an undefined mapping in strings is normal, the question was about string subclasses. What is the question? U+FFFE also represents an undefined

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25875/ship4.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25872/ship1.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25880/ship9.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25873/ship2.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25885/ship14.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25886/ship15.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25887/ship16.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25891/ship20.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25892/ship21.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25894/ship23.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25895/ship24.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25874/ship3.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25876/ship5.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25877/ship6.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25898/ship27.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25878/ship7.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25879/ship8.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25899/ship28.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25881/ship10.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25882/ship11.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25901/ship30.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25883/ship12.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25884/ship13.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25903/ship32.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25888/ship17.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25889/ship18.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25890/ship19.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25893/ship22.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25906/ship35.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25896/ship25.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25897/ship26.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25908/ship37.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25900/ship29.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25902/ship31.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25904/ship33.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25911/ship40.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25905/ship34.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25912/ship41.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25907/ship36.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25909/ship38.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25910/ship39.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25913/ship42.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25915/ship44.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25914/ship43.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25916/ship45.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25917/ship46.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25918/ship47.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25919/ship48.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25920/ship49.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25921/ship50.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

[issue1009] Implementation of PEP 3101, Advanced String Formatting

2012-06-10 Thread Fyrn Jilot
Changes by Fyrn Jilot fyrn7...@yahoo.com: Added file: http://bugs.python.org/file25922/ship51.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1009 ___

  1   2   >