Hello everyone.
In today's article we are reviewing the released 2024.4 version of Kali Linux.
I wish everyone good reading and work.
https://denizhalil.com/2024/12/17/kali-linux-2024-4-features-tools/
Hello everyone.
In today's article we are reviewing the released 2024.4 version of Kali Linux.
I wish everyone good reading and work.
https://denizhalil.com/2024/12/17/kali-linux-2024-4-features-tools/
Neden indirdiğim Python kodlarının çoğu çalışmıyor?!
Py5 modülü istedi onu da ekledim, ama hâlâ çalışmıyor!
Ben daha öğrenmeye çalışan bir python öğrencisiyim, neden her şeyi zorlaştırıyorsunuz?
Üstelik İngilizce de bilmiyorum ve bâzan bir ilkokul öğrencisinin bile kolayca anlayabileceği tavsiye ve cevapları anlayamayabiliyorum!
https://mastodon.online/@villares@pynews.com.br/113297848799407948
Special limited edition RC3 of Python 3.13.0 is now out! Please test it so we can release the proper one next week!
As a thank you, have a Python 3.12.7!
https://discuss.python.org/t/python-3-12-7-and-3-13-0rc3-released/66306
The **final** release candidate of Python 3.13 is out!
Library maintainers, please upload wheels to PyPI **now**, especially if you have compiled extensions (there are no more ABI changes), so everything is in place for the big 3.13.0 release in 3 weeks!
Also! Security releases have been made for the full set of Python 3.8 - 3.12. Please upgrade!
Anyone noticed tests running slower on Python 3.12 ? If you're using coverage.py, the quick fix is to set env variable COVERAGE_CORE=sysmon. Just got 3.5x speedup for my tests.
Ref: https://github.com/nedbat/coveragepy/issues/1665 and https://github.com/python/cpython/issues/107674
To test installation of mapdata.py (https://pypi.org/project/mapdata/) under Python 3.12 in a venv (my dev machine runs 3.10), the following additional system packages must be installed during the installation of Python 3.12: libssl-dev, build-essential, libffi-dev, libsqlite3-dev, and tk-dev. After installation of these (e.g., with apt on Debian), the Python installation must be completed with `./configure & make & make install`.
@ambv One of the symptoms of installing multiple #Python versions on my #Ubuntu #Linux system is dependency errors. I have installed your #Python312 interpreter, which is unable to be configured (the other #Deadsnakes installations have succeeded).
And Python 3.12.3 and 3.13.0a6 (the last alpha!) are out!
https://discuss.python.org/t/python-3-12-3-and-3-13-0a6-released/50601
#Python #Python312 #Python313
@foxmask #supervisor works just fine with #python312 . What made you think it's only for python 3.6?
Looking into the python 3.12 generics. I thought the only, and very tempting, advantage of python over static systems was the quick and dirty linter-only typing.
With half-baked generics, python is just slow C++. If Julia had better tooling outside vscode I would have seen absolutely zero use-cases for generics in python.
We just released version 2.5.1 of django-configurations with Python 3.12 compatibility
@driscollis And you can use the CLI with Python 3.12 to quickly generate a UUID!
❯ python -m uuid
e80934a1-9e1e-459d-af4c-56873cee3470
https://docs.python.org/3/library/uuid.html#command-line-usage
New Low-Impact Monitoring API in Python 3.12
#Pycharm #Tutorials #Debugger #Python #Python312
https://blog.jetbrains.com/pycharm/2024/01/new-low-impact-monitoring-api-in-python-3-12/
Django 5.0 has been released
After months of work, everyone can use this great new version
My favorite features are:
• generated fields
• database default values
• prefetch related for generic foreign keys
Which are your favorite features?
https://www.djangoproject.com/weblog/2023/dec/04/django-50-released/
Uh, I'm quite disappointed about this future #Python deprecation: https://blog.miguelgrinberg.com/post/it-s-time-for-a-change-datetime-utcnow-is-now-deprecated
It will break some stuff in a few years when it becomes effective.
I don't enjoy writing complaints, but I had to. #python #python312
@peterluschny - I've also opened https://github.com/python/cpython/issues/112282
to reflect the documentation side of it.
#python #python312 #programming
@dimpase wrote:
"...the standard Fibonacci(500) example shows this bug just as well."
# fib.py
import sys
sys.setrecursionlimit(2000)
from functools import cache
@cache
def fib(n):
if n<1: return 0
if n==1: return 1
return fib(n-1) + fib(n-2)
print(fib(500))
Me:
That's really an absurdity that can't be surpassed in terms of embarrassment.
I hope the developer is fired, but also the chairman of the Python board.
Because it shows that there is no testing culture in Python. If you tinker with Python's stack screws and don't monitor it with even the most primitive tests like this, then...
In any case, my trust in Python has been severely shaken.
#python #python312 #programming
What's wrong with Python?
I couldn't be more upset. Today I installed Python 12.0 and my project got completely broken. It worked just fine for many releases, including 11.6.
Why? setrecursionlimit() is ignored! Incredible. But my program needs deep recursions.
Apparently this was already reported in the beta phase, an absolute blocker for every release, but apparently did not lead to any consequences.
https://discuss.python.org/t/has-sys-setrecursionlimit-behaviour-changed-in-python-3-12b/30205
@djangonaut if you need ideas, our attempt to add 5.0 support for django-storages was stalled that a dropbox library doesn't support Python 3.12 as it's using setup.py (removed in 3.12).
I don't maintain any packages, so I don't really know how this needs updating and how to check it works - but someone on here might!
Then, I'm sure this process could be repeated for a bunch of other Python packages
Unveiling Python 3.12: What’s New in the World of Python?
#Pycharm #Python #Python312