Video by via Dailymotion Source MUMBAI: In an exclusive interview with IANS, singer Neeti Mohan shared her thoughts on Royal Stag Boombox’s innovative blend of Bollywood and Hip-Hop music. She expressed her excitement about being a part of this unique fusion, which brings together two distinct genres to create something fresh and electrifying. Neeti Mohan…
The camouflage of the spiny leaf insect is amazing
ruby -run, again
Ruby 3.3.7 Released
Ruby 3.3.7 has been released.
This is a routine update that includes minor bug fixes.
Please refer to the release notes on GitHub for further details.
Download
-
https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.7.tar.gz
SIZE: 22163173 SHA1: aaa94abd1a5676dd24e927876935597a505e2a4d SHA256: 9c37c3b12288c7aec20ca121ce76845be5bb5d77662a24919651aaf1d12c8628 SHA512: 9b48be05d1210e9194c8a6d77dfc3227599bff2b55fc9bb2049b11547927deef530ece9a2a505600cdc492c8517b1bef7ab5f2520ebd79ffcf76f0a734fa763d
-
https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.7.tar.xz
SIZE: 16379504 SHA1: b5498e7174328fe0af0d93ee9667d39dda36621b SHA256: 5dbcbc605e0ed4b09c52703241577eb7edc3a2dc747e184c72b5285719b6ad72 SHA512: 4082a7684c1b0d53a0ce493f79568e851d37a864f59c58b2e0c273b2659e0ca75318ddff939fdf5e9d0a3eeba1b6d8f03bf88afb49a5ffd77714f1c8a7dfdd55
-
https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.7.zip
SIZE: 27589557 SHA1: afe9800b8711aba57df5e11005a1710b48c9377e SHA256: 9c6b1d13a03d8423391e070e324b1380a597d3ac9eb5d8ea40bc4fd5226556a5 SHA512: 20f0ad9e80528c5c5d42c0be8e85cf3f120a20a973a7d8303785f4201263d7896c9a7462d8b862330c2d4039ab8d47616fa13ef487a2ed05490ca4e731c97ef2
Release Comment
Many committers, developers, and users who provided bug reports helped us make this release.
Thanks for their contributions.
Posted by k0kubun on 15 Jan 2025
Python 3.14.0 alpha 4 is out
Hello, three dot fourteen dot zero alpha four!
https://www.python.org/downloads/release/python-3140a4/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, compared to 3.13
Python 3.14 is still in development. This release, 3.14.0a4, is the
fourth of seven planned alpha releases.
Alpha releases are intended to make it easier to test the current
state of new features and bug fixes and to test the release process.
During the alpha phase, features may be added up until the start of
the beta phase (2025-05-06) and, if necessary, may be modified or
deleted up until the release candidate phase (2025-07-22). Please keep
in mind that this is a preview release and its use is
not recommended for production environments.
Many new features for Python 3.14 are still being planned and
written. Among the new major new features and changes so far:
- PEP 649: deferred
evaluation of annotations - PEP 741: Python
configuration C API - PEP 761: Python 3.14
and onwards no longer provides PGP signatures for release artifacts.
Instead, Sigstore is recommended for verifiers. - Improved
error messages - Many
removals of deprecated classes, functions, methods and parameters in
various standard library modules. - New
deprecations, many of which are scheduled for removal from Python
3.16 - C API removals
and deprecations - (Hey, fellow core developer, if a feature
you find important is missing from this list, let Hugo
know.)
The next pre-release of Python 3.14 will be 3.14.0a5, currently
scheduled for 2025-02-11.
More resources
- Online
documentation - PEP 745, 3.14
Release Schedule - Report bugs at https://github.com/python/cpython/issues
- Help fund Python and
its community
And now for
something completely different
In Python, you can use Greek letters as constants. For example:
from math import pi as π
def circumference(radius: float) -> float:
return 2 * π * radius
print(circumference(6378.137)) # 40075.016685578485
Enjoy the new release
Thanks to all of the many volunteers who help make Python Development
and these releases possible! Please consider supporting our efforts by
volunteering yourself or through organisation contributions to the Python Software
Foundation.
Regards from a slushy, slippery Helsinki,
Your release team,
Hugo van Kemenade @hugovk
Ned Deily @nad
Steve Dower @steve.dower
Łukasz Langa @ambv