Major changes since 1.3.1:
- new builtins, ujson, uheapq, ubinascii modules
- new memoryview and compile builtins
- improvements for eval and exec
- array slice assignment support
- basix regex support
- x86 support for the native emitter
- many other fixes and improvements
Changelogs: https://github.com/micropython/micropython/release
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true,
as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107).
Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when
it is always needed, I renamed it, in one case, I merged two patches.
Differential Revision: https://reviews.freebsd.org/D2209
This blender release comes with a couple of major improvements, such as
* memory and speed improvements for cycles rendering
* DoF and ambient occlusion support for the 3D viewport
* massive improvements for particles and hair
* a new cavity mask for texture painting
* and many more
Changelog: http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.74
224.0.0.51 address, which is "administratively scoped" and does not leave the
subnet.
This program re-broadcast mDNS packets from one interface to other interfaces.
It can be used to bridge zeroconf devices to work properly across the two
subnets.
mtbl is a C library implementation of the Sorted String Table
(SSTable) data structure, based on the SSTable implementation in
the open source Google LevelDB library https://github.com/google/leveldb.
An SSTable is a file containing an immutable mapping of keys to
values. Keys are stored in sorted order, with an index at the end
of the file allowing keys to be located quickly.
mtbl is not a database library. It does not provide an updateable
key-value data store, but rather exposes primitives for creating,
searching and merging SSTable files. Unlike databases which use the
SSTable data structure internally as part of their data store,
management of SSTable files -- creation, merging, deletion, combining
of search results from multiple SSTables -- is left to the discretion
of the mtbl library user.
Differential Revision: https://reviews.freebsd.org/D2206
Approved by: mat (mentor)
Sponsored by: Farsight Security, Inc.
This is pynmsg, a Python extension module implemented in Cython for
the nmsg C library.
Differential Revision: https://reviews.freebsd.org/D2201
Approved by: mat (mentor)
Sponsored by: Farsight Security, Inc.
This is pywdns, a Python extension module implemented in Cython
for the wdns C library.
Differential Revision: https://reviews.freebsd.org/D2200
Approved by: mat (mentor)
Sponsored by: Farsight Security, Inc.
PyGitUp is a Python implementation of the great aanand/git-up/. It
not only fully covers the abilities of git-up and should be a drop-in
replacement, but also extends it slightly.
WWW: https://pypi.python.org/pypi/git-up
PR: 198666
Submitted by: Maxim Filimonov <che@bein.link>