PyPy full changelog
PyPy 7.1.1
released Jul 21, 2019 (New Release)
Improve performance of u''.append
Prevent a crash in zlib when flushing a closed stream
Fix a few corner cases when encountering unicode values above 0x110000
Teach the JIT how to handle very large constant lists, sets, or dicts
Fix building on ARM32 (issue 2984)
Fix a bug in register assignment in ARM32
Package windows DLLs needed by cffi modules next to the cffi c-extensions (issue 2988)
Cleanup and refactor JIT code to remove rpython.jit.metainterp.typesystem
Fix memoryviews of ctype structures with padding, (cpython issue 32780)
CFFI updated to as-yet-unreleased 1.12.3
Prevent a crash in zlib when flushing a closed stream
Fix a few corner cases when encountering unicode values above 0x110000
Teach the JIT how to handle very large constant lists, sets, or dicts
Fix building on ARM32 (issue 2984)
Fix a bug in register assignment in ARM32
Package windows DLLs needed by cffi modules next to the cffi c-extensions (issue 2988)
Cleanup and refactor JIT code to remove rpython.jit.metainterp.typesystem
Fix memoryviews of ctype structures with padding, (cpython issue 32780)
CFFI updated to as-yet-unreleased 1.12.3
PyPy 2.6.0
released Jun 9, 2015 (New Release)
ssue2005: ignore errors on closing random file handles while importing a module (cpython compatibility)
issue2013: added constants to _ssl for TLS 1.1 and 1.2
issue2014: Add PyLong_FromUnicode to cpyext.
issue2017: On non-Linux-x86 platforms, reduced the memory impact of creating a lot of greenlets/tasklets. Particularly useful on Win32 and on ARM, where you used to get a MemoryError after only 2500-5000 greenlets (the 32-bit address space is exhausted).
issue2013: added constants to _ssl for TLS 1.1 and 1.2
issue2014: Add PyLong_FromUnicode to cpyext.
issue2017: On non-Linux-x86 platforms, reduced the memory impact of creating a lot of greenlets/tasklets. Particularly useful on Win32 and on ARM, where you used to get a MemoryError after only 2500-5000 greenlets (the 32-bit address space is exhausted).
PyPy 2.5.1
released Jun 18, 2014 (New Release)
The past months have seen pypy mature and grow, as rpython becomes the goto solution for writing fast dynamic language interpreters. Our separation of Rpython and the python interpreter PyPy is now much clearer in the PyPy documentation and we now have seperate RPython documentation. Tell us what still isn’t clear, or even better help us improve the documentation.
We merged version 2.7.9 of python’s stdlib. From the python release notice:
The entirety of Python 3.4’s ssl module has been backported. See PEP 466 for justification.
HTTPS certificate validation using the system’s certificate store is now enabled by default. See PEP 476 for details.
We merged version 2.7.9 of python’s stdlib. From the python release notice:
The entirety of Python 3.4’s ssl module has been backported. See PEP 466 for justification.
HTTPS certificate validation using the system’s certificate store is now enabled by default. See PEP 476 for details.
PyPy 2.3.1
released Jun 18, 2014 (New Release)
Bugfixes:
Many issues were cleaned up after being reported. Note that we consider performance slowdowns as bugs. Here is a summary of the user-facing changes; for more information see whats-new:
The ARM port no longer crashes on unaligned memory access to floats and doubles, and singlefloats are supported in the JIT.
Generators are faster since they now skip unnecessary cleanup
A first time contributor simplified JIT traces by adding integer bound propagation in indexing and logical operations.
Optimize consecutive dictionary lookups of the same key in a chain
Our extensive pre-translation test suite now runs nightly on more platforms
Fix issues with reimporting builtin modules
Fix an RPython bug with loop-unrolling that appeared in the HippyVM PHP port
Support for corner cases on objects with __int__ and __float__ methods
Fix multithreaded support for gethostbyname_ex and gethostbyaddr
Fix handling of tp_name for type objects
Many issues were cleaned up after being reported. Note that we consider performance slowdowns as bugs. Here is a summary of the user-facing changes; for more information see whats-new:
The ARM port no longer crashes on unaligned memory access to floats and doubles, and singlefloats are supported in the JIT.
Generators are faster since they now skip unnecessary cleanup
A first time contributor simplified JIT traces by adding integer bound propagation in indexing and logical operations.
Optimize consecutive dictionary lookups of the same key in a chain
Our extensive pre-translation test suite now runs nightly on more platforms
Fix issues with reimporting builtin modules
Fix an RPython bug with loop-unrolling that appeared in the HippyVM PHP port
Support for corner cases on objects with __int__ and __float__ methods
Fix multithreaded support for gethostbyname_ex and gethostbyaddr
Fix handling of tp_name for type objects
PyPy 2.3
released May 12, 2014 (New Release)
Bugfixes:
Many issues were cleaned up after being reported. Note that we consider performance slowdowns as bugs. Here is a summary of the user-facing changes; for more information see whats-new:
The ARM port no longer crashes on unaligned memory access to floats and doubles, and singlefloats are supported in the JIT.
Generators are faster since they now skip unnecessary cleanup
A first time contributor simplified JIT traces by adding integer bound propagation in indexing and logical operations.
Optimize consecutive dictionary lookups of the same key in a chain
Our extensive pre-translation test suite now runs nightly on more platforms
Fix issues with reimporting builtin modules
Fix an RPython bug with loop-unrolling that appeared in the HippyVM PHP port
Support for corner cases on objects with __int__ and __float__ methods
Fix multithreaded support for gethostbyname_ex and gethostbyaddr
Fix handling of tp_name for type objects
Many issues were cleaned up after being reported. Note that we consider performance slowdowns as bugs. Here is a summary of the user-facing changes; for more information see whats-new:
The ARM port no longer crashes on unaligned memory access to floats and doubles, and singlefloats are supported in the JIT.
Generators are faster since they now skip unnecessary cleanup
A first time contributor simplified JIT traces by adding integer bound propagation in indexing and logical operations.
Optimize consecutive dictionary lookups of the same key in a chain
Our extensive pre-translation test suite now runs nightly on more platforms
Fix issues with reimporting builtin modules
Fix an RPython bug with loop-unrolling that appeared in the HippyVM PHP port
Support for corner cases on objects with __int__ and __float__ methods
Fix multithreaded support for gethostbyname_ex and gethostbyaddr
Fix handling of tp_name for type objects
PyPy 2.2.1
released Nov 30, 2013 (New Release)
This is a bugfix release. The most important bugs fixed are:
an issue in sockets’ reference counting emulation, showing up notably when using the ssl module and calling makefile().
Tkinter support on Windows.
If sys.maxunicode==65535 (on Windows and maybe OS/X), the json decoder incorrectly decoded surrogate pairs.
some FreeBSD fixes.
an issue in sockets’ reference counting emulation, showing up notably when using the ssl module and calling makefile().
Tkinter support on Windows.
If sys.maxunicode==65535 (on Windows and maybe OS/X), the json decoder incorrectly decoded surrogate pairs.
some FreeBSD fixes.
PyPy 2.2
released Nov 19, 2013 (New Release)
This release targets version 2.7.3 of the Python language. This release main highlight is the introduction of the incremental garbage collector, sponsored by the Raspberry Pi Foundation.
This release also contains several bugfixes and performance improvements.
This release also contains several bugfixes and performance improvements.
PyPy 2.1
released Aug 6, 2013 (New Release)
· JIT support for ARM, architecture versions 6 and 7, hard- and soft-float ABI
· Stacklet support for ARM
· Support for os.statvfs and os.fstatvfs on unix systems
· Improved logging performance
· Faster sets for objects
· Interpreter improvements
· During packaging, compile the CFFI based TK extension
· Pickling of numpy arrays and dtypes
· Subarrays for numpy
· Bugfixes to numpy
· Bugfixes to cffi and ctypes
· Bugfixes to the x86 stacklet support
· Stacklet support for ARM
· Support for os.statvfs and os.fstatvfs on unix systems
· Improved logging performance
· Faster sets for objects
· Interpreter improvements
· During packaging, compile the CFFI based TK extension
· Pickling of numpy arrays and dtypes
· Subarrays for numpy
· Bugfixes to numpy
· Bugfixes to cffi and ctypes
· Bugfixes to the x86 stacklet support
PyPy for Windows 7 - free download notice
Windows 7 Download periodically updates software information of PyPy from the publisher.
« BACK
My Account
Help
Windows 7 Software Coupons
-
WinX DVD Ripper
50% Off -
MacX DVD Video Converter
58% Off -
MacX DVD Ripper Pro
50% Off -
MacX Media Management Bundle
70% Off -
WinX HD Video Converter
56% Off
My Saved Stuff
You have not saved any software.
Click "Save" next to each software.
Click "Save" next to each software.
Would you like to receive announcements of new versions of your software by email or by RSS reader? Register for FREE!
Windows 7 Downloads Picks
- Simply Fortran 3.39 Build 4394
- Qt 6.9.0
- Open Fortran Parser 0.8.3
- Code::Blocks forMac OS X 20.03 Build Apr 3 20
- wxDEV-C++ 4.9.9.2
- Agena 4.2.6
- Python 3.12.4
- FreeBasic for Windows (x64 bit) 1.10.1
- PythonCard 0.8.2
- FreeBasic for Windows 1.10.1
- GoBug 2.03.01
- tIDE 2.72
- Wing IDE Personal 10.0.4.0
- go.pc 1.23.0
- PureBasic 6.20.0
- Sikuli X 1.0.1
- Portable Sikuli X 1.0 RC3
- BI xPress 2.1.0 R30550
- Hakaya Studio 3.5.0.0 RC
- Code::Blocks for Windows 20.03 Build Apr 3 20
Popular Tags
tools
cross-platform
java
development
debugger
interface
user-friendly
windows
pascal
basic language
programming language
ide
compiler
visual basic
language
decompiler
free
compile
environment
windows 7
exe
efficient
software
programming
basic
customizable
coding language
application
versatile
open-source
Popular Windows 7 Software
- Simply Fortran 3.39 Build 4394
- Qt 6.9.0
- Free OCR C# 2022.8.7804
- Turbo C++ 3.0
- C# QR Barcode Reader 2021.11
- StrokeScribe 5.2.12.0
- ExamDiff Pro 15.0.1.27
- Turbo Pascal 7.0
- Adobe AIR SDK for Linux 51.1.3.10
- Open Fortran Parser 0.8.3
- Portable RJ TextEd 4.15
- TrueUpdate 3.5.3.0
- PILS 0.4.0
- XTOOLS
- Microsoft Visual Studio 2022 17.10.3
© 2025 Windows7Download.com - All logos, trademarks, art and other creative works are and remain copyright and property of their respective owners. Microsoft Windows is a registered trademarks of Microsoft Corporation. Microsoft Corporation in no way endorses or is affiliated with windows7download.com.