The Eric Python IDE - 0 views
Ubiquity's Python Feed Plugin at Toolness - 0 views
-
A few weeks ago I wrote about Ubiquity Feed Plugins, which are basically just a way of separating the user interface of subscribing to a new feature from the implementation of the feature itself. As I've written about before, one of the things I've missed about the Mozilla development environment is its support for the Python programming language. Aside from being humane and having a great community, it has functionality that could complement the Mozilla platform quite nicely. So we've whipped up a quick proof-of-concept Python Feed Plugin for Ubiquity to explore this possibility.
Python HOWTO - Enso Wiki - 1 views
"n choose m" module - 0 views
-
""" a class for generating permutations from an array # choose 2 letters from 'abcd' c = Chooser(['a', 'b', 'c', 'd'], 2) while c.hasMoreElements(): print c.next() """ import time, copy class NoMoreChoices(StandardError): pass class Chooser:
Place n indistinguishable items into k distinguishable boxes - comp.lang.python | Googl... - 0 views
-
> Generate all ways to place n indistiguishable items into k > distinguishable boxes
linear-programming - Google Code - 0 views
JWZ's Threading Algorithm - 0 views
PySmell v0.6 released : orestis.gr - 0 views
Python Package Index : JCC 2.0 - 0 views
OpenOpt: Example of 10X speedup for NLP via oofun - 0 views
Python Objects - 0 views
Pygments - Python syntax highlighter - 0 views
-
This is the home of Pygments. It is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. Highlights are:
Psyco - Introduction - 0 views
-
In short: run your existing Python software much faster, with no change in your source. Think of Psyco as a kind of just-in-time (JIT) compiler, a little bit like what exists for other languages, that emit machine code on the fly instead of interpreting your Python program step by step. The difference with the traditional approach to JIT compilers is that Psyco writes several version of the same blocks (a block is a bit of a function), which are optimized by being specialized to some kinds of variables (a "kind" can mean a type, but it is more general). The result is that your unmodified Python programs run faster. Benefits 2x to 100x speed-ups, typically 4x, with an unmodified Python interpreter and unmodified source code, just a dynamically loadable C extension module. Drawbacks Psyco currently uses a lot of memory. It only runs on Intel 386-compatible processors (under any OS) right now. There are some subtle semantic differences (i.e. bugs) with the way Python works; they should not be apparent in most programs.
« First
‹ Previous
221 - 240 of 461
Next ›
Last »
Showing 20▼ items per page