Ports Search

Results 4,2114,220 of 5,623 for /devel/.(0.003 seconds)
devel/fudge-1.1.0 (Score: 0.032514982)
Fudge is a Python module for using fake objects to test real ones
Fudge is a Python module for using fake objects (mocks, stubs, etc) to test real ones. This module is designed for two specific situations: * Replace an object o Temporarily return a canned value for a method or allow a method to be called without affect. * Ensure an object is used correctly o Declare expectations about what methods should be called and what arguments should be sent. Fudge was inspired by Mocha which is a simpler version of jMock. But unlike Mocha, Fudge does not automatically hijack real objects; you explicitly patch them in your test setup. And unlike jMock, Fudge is only as strict about expectations as you want it to be. If you just want to expect a method call without worrying about its arguments or the type of the arguments then you can.
devel/funcparserlib-0.3.6 (Score: 0.032514982)
Recursive descent parsing library based on functional combinators
Parser combinators are just higher-order functions that take parsers as their arguments and return them as result values. Parser combinators are: * First-class values * Extremely composable * Tend to make the code quite compact * Resemble the readable notation of xBNF grammars Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that it's very easy to write them without thinking about look-aheads and all that hardcore parsing stuff. But the recursive descent parsing is a rather slow method compared to LL(k) or LR(k) algorithms. So the primary domain for funcparserlib is parsing little languages or external DSLs (domain specific languages). The library itself is very small. Its source code is only 0.5 KLOC, with lots of comments included. It features the longest parsed prefix error reporting, as well as a tiny lexer generator for token position tracking.
devel/libdispatch-210 (Score: 0.032514982)
Grand Central Dispatch API support library
This port contains the userland implementation of Grand Central Dispatch technology. The central insight of GCD is shifting the responsibility for managing threads and their execution from applications to the operating system. As a result, programmers can write less code to deal with concurrent operations in their applications, and the system can perform more efficiently on single-processor machines, large multiprocessor servers, and everything in between. Without a pervasive approach such as GCD, even the best-written application cannot deliver the best possible performance, because it doesn'tt have full insight into everything else happening in the system.
devel/functools32-3.2.3 (Score: 0.032514982)
Backport of the functools module from Python 3.2.3 for use on 2.7
This is a backport of the Python 3.2 functools module for use on Python versions 2.7 and PyPy. It includes new features lru_cache (Least-recently-used cache decorator).
devel/fusefs-0.2.1 (Score: 0.032514982)
FUSE Python bindings
FUSE Python bindings
devel/future-0.15.2 (Score: 0.032514982)
Clean single-source support for Python 3 and 2
future is the missing compatibility layer between Python 2 and Python 3. It allows you to use a single, clean Python 3.x-compatible codebase to support both Python 2 and Python 3 with minimal overhead.
devel/futures-3.0.5 (Score: 0.032514982)
Backport of the concurrent.futures package from Python 3.2
Backport of the concurrent.futures package from Python 3.2 The concurrent.futures module provides a high-level interface for asynchronously executing callables. This is described in PEP-3148 and is included in Python 3.2+
devel/game-1.9.1 (Score: 0.032514982)
Module designed to write games in Python
Pygame is a cross-platfrom library based on top of the SDL and designed to make it easy to write multimedia software, such as games, in Python.
devel/libesedb-e.20160622 (Score: 0.032514982)
Library and tools to access the ESEDB format
Library and tools to access the Extensible Storage Engine (ESE) Database File (EDB) format. ESEDB is used in many different applications like Windows Search, Windows Mail, Exchange, Active Directory, etc.
devel/alien-0.7.0 (Score: 0.032514982)
Lua -> C FFI
Alien lets a Lua application call load dynamic libraries and call C functions in a portable way, using libffi.