Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 42 results for
pypy
- Page 1
Pypy status
Programming
Software Development
13 Years Ago
by TrustyTony
… speed and stability improvements. Code-named "kickass panda",
PyPy
1.6 is said to be between 20 and 30… of Mac OS X. More than 50 bugs found in
PyPy
1.5 have also been addressed. Further information about the… be found in a post on the
PyPy
Status blog and on the
PyPy
Features page.
PyPy
1.6 is available to [URL…
Re: Pypy status
Programming
Software Development
13 Years Ago
by dresses623
This is a good state of
PyPy
blog posts
CPython Jython and Ironpython
Programming
Software Development
16 Years Ago
by Stefano Mtangoo
… difference between these version of Python: Cpython, Jython, Iron python,
pypy
.....etc (You can add it). What is the main difference…
Virtualenv help
Programming
Software Development
13 Years Ago
by flebber
… virtualenv to manage(install and remove) python versions etc python3,
pypy
, jython or am I installing them separately and just using…
implementations issue
Programming
Software Development
12 Years Ago
by silvercats
… on .NET) Jython (Python running on the Java Virtual Machine)
PyPy
(A fast python implementation with a JIT compiler) Stackless Python…
Re: implementations issue
Programming
Software Development
12 Years Ago
by TrustyTony
>Jython is written in Java, yes, and
PyPy
is writen in Python (or limited subset RPython), but IronPython is .Net friendly implementation, written in C# (thanks, Gribouillis!).
Re: Speeding up Python
Programming
Software Development
16 Years Ago
by woooee
Pypy
is the faster Python. I have never tried it though. [url]http://codespeak.net/
pypy
/dist/
pypy
/doc/home.html[/url]
Re: Why would you use tuples?
Programming
Software Development
11 Years Ago
by snippsat
… Pack out to example `C:\
pypy
` Navigate to folder in cmd then. `C:\
pypy
>
pypy
some_file_to_run.py` Linux example Mint,…. Navigate to folder. tom@tom-VirtualBox:/usr/lib/
pypy
/bin > ./
pypy
-c -m timeit [1,2,3,4] 1000000000…usec per loop tom@tom-VirtualBox:/usr/lib/
pypy
/bin > So `
pypy
` or `
pypy
-c` just replace `python` as run …
Re: Why would you use tuples?
Programming
Software Development
11 Years Ago
by snippsat
So how would speed test over look in [
PyPy
](http://
pypy
.org/)? C:\
pypy
>
pypy
-m timeit (1,2,3,4) 1000000000 loops, best… of 3: 0.00102 usec per loop C:\
pypy
>
pypy
-m timeit [1,2,3,4] 1000000000 loops, best… Hmm faster and no time differnce,don't ask why
PyPy
is the diabolical work of super programmers. A god a…
Re: Com file
Programming
Software Development
14 Years Ago
by TrustyTony
Not ideal for that but for example there is
pypy
(see [url]http://
pypy
.org[/url]) python just-in-time compiler (not many…
Re: Deconstructing List Comprehension
Programming
Software Development
14 Years Ago
by TrustyTony
… start to use module psyco (Python 2 only), try
pypy
([url]http://
pypy
.org/[/url]) (python 2.5) or even Shedskin compilation…
Re: python's efficiency of using better hardware
Programming
Software Development
13 Years Ago
by woooee
… opposed to looking for the 100 random records. [URL=http://
pypy
.org/]
PyPy
[/URL] is also something to look into. [Quote]i…
Re: confused about python
Programming
Software Development
13 Years Ago
by TrustyTony
… 2.6 without psyco (often both faster than Python3). Also
PyPy
JIT compiler (written with subset of Python) is now upgraded… has with some programs of mine weaknesses, but I think
PyPy
is much faster in disc operations in Linux than in…
Re: break function
Programming
Software Development
13 Years Ago
by TrustyTony
… tried to use your program with [URL="http://
pypy
.org/"]
PyPy
[/URL]or [URL="http://psyco.sourceforge.net/"…
Re: Create a scripting language in Python?
Programming
Software Development
12 Years Ago
by TrustyTony
….org/pcarbonn/pydatalog/wiki/Home and implementation in RPython of
PyPy
fame http://codespeak.net/
pypy
/extradoc/paper/prolog-in-python.pdf
Re: killer gui in python...
Programming
Software Development
16 Years Ago
by leegeorg07
if you have python 2k then there are lots of choices (look at
pypy
) like Tkinter, pygame and WXPython, if you have python 3k then look at [URL="https://launchpad.net/curtains"]this[/URL]
Re: Need help with preperation for next year
Programming
Software Development
14 Years Ago
by TrustyTony
Check out also psyco module and
pypy
! Learning to use numpy could be highly beneficial while staying in native Python.
Re: Quiz of the week: Where in your system you have this code?
Programming
Software Development
13 Years Ago
by TrustyTony
Interestingly you also got it if you have OpenOffice.org 3 or
pypy
installed, even Qt 2010.05 and QtSDK seems to have it in pythongdb.
Re: Business Logic
Programming
Software Development
13 Years Ago
by TrustyTony
… you have ready, otherwise you could have tried to adapt
pypy
JIT environment for your application. Usually in Python circles XML…
Re: Business Logic
Programming
Software Development
13 Years Ago
by N1GHTS
… work only in this interface engine. I understand that "
pypy
JIT" is an alternative to "CPython", either…
Re: calculate for very big numbers with python
Programming
Software Development
13 Years Ago
by TrustyTony
The time spent installing pypy1.8 to work faster with Mersenne primes, could be time well spent: [url]http://
pypy
.org/download.html[/url]
Re: Invoking Python scripts from CMD
Programming
Software Development
13 Years Ago
by TrustyTony
….2 and 3.2.2 installed. Actually I have also
PyPy
1.8 also installed. So for more rigorous testing I…
Re: a better Python IDE than VS2010?
Programming
Software Development
11 Years Ago
by snippsat
…. Supported: Python 2.x or 3.x, Jython, IronPython and
PyPy
,Django..... [Wingware](http://wingware.com/) [KomodoIDE](http://www.activestate.com…
Re: Comparing Perl , Python and PHP
Programming
Software Development
11 Years Ago
by vegaseat
Python has a variant called
PyPy
that translates Python code to C which can then be compiled. The resulting C code is highly optimized and in many cases faster than "standard" C code.
Re: Why would you use tuples?
Programming
Software Development
11 Years Ago
by vegaseat
Doesn't
PyPy
actually translate to C?
Re: Why would you use tuples?
Programming
Software Development
11 Years Ago
by snippsat
> Doesn't
PyPy
actually translate to C? Yes that one of the process,if you [look](http://pyvideo.org/video/659/keynote-david-beazley) at video bye David Beazle you get a better overview. There is a lot of heavy stuff under the cover.
Re: Why would you use tuples?
Programming
Software Development
11 Years Ago
by vegaseat
The folks that work on
PyPy
are some of the best C experts known.
Re: Why would you use tuples?
Programming
Software Development
11 Years Ago
by sneekula
How do you run
PyPy
?
Re: Will python overtake other languages in game development?
Programming
Game Development
10 Years Ago
by Hiroshe
… faster then Python (unless you use a jit compiler like
pypy
) in terms of the operations that you might expect from…
Re: So much info.. what is right?what is wrong?
Community Center
Geeks' Lounge
10 Years Ago
by vegaseat
You may take a look at **Quora**, a search engine that is dedicated to the truth. It is based on a system of real name users voting up content. Quora was co-founded by two former Facebook employees in 2010 and is written in Python (
PyPy
). http://en.wikipedia.org/wiki/Quora
1
2
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC