Python 3.13.0 alpha 4 is now available
Python 3.13.0 alpha 4 is now available:
This is an early developer preview of Python 3.13
Major new features of the 3.13 series, compared to 3.12
Python 3.13 is still in development. This release, 3.13.0a4, is the fourth of six 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 (2024-05-07) and, if necessary, may be modified or
deleted up until the release candidate phase (2024-07-30). 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.13 are still being planned and written. Work continues apace on both the work to remove the Global Interpeter Lock , and to improve Python performance. The most notable changes so far:
- In the interactive interpreter, exception tracebacks are now colorized by default .
- A preliminary, experimental JIT was added, providing the ground work for significant performance improvements.
- Docstrings now have their leading indentation stripped , reducing memory use and the size of .pyc files. (Most tools handling docstrings already strip leading indentation.)
- PEP 594 (Removing dead batteries from the standard library) scheduled removals of many deprecated modules:
aifc
,audioop
,chunk
,cgi
,cgitb
,crypt
,imghdr
,mailcap
,msilib
,nis
,nntplib
,ossaudiodev
,pipes
,sndhdr
,spwd
,sunau
,telnetlib
,uu
,xdrlib
,lib2to3
. - Many other removals of deprecated classes, functions and methods in various standard library modules.
- New deprecations , most of which are scheduled for removal from Python 3.15 or 3.16.
- C API removals and deprecations. (Some removals present in alpha 1 have been reverted in alpha 2, as the removals were deemed too disruptive at this time.)
(Hey, fellow core developer, if a feature you find important is missing from this list, let Thomas know.)
The next pre-release of Python 3.13 will be 3.13.0a5, currently scheduled for 2023-03-12.
More resources
- Online Documentation
- PEP 719 , 3.13 Release Schedule
- Report bugs at Issues · python/cpython · GitHub.
- Help fund Python directly (or via GitHub Sponsors), and support the Python community.
Enjoy the new releases
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 organization contributions to the
Python Software Foundation.
Regards from dusky Amsterdam,
Your release team,
Thomas Wouters
Ned Deily
Steve Dower
Łukasz Langa
Implementing OpenTelemetry Natively in an Event Broker
Introduction In basic terms, an event-driven architecture (EDA) is a distributed system that involves moving data and events between microservices in an asynchronous manner with an event broker acting as the central nervous system in the overall architecture. It is a software design pattern in which decoupled applications can asynchronously publish and subscribe to events […]
The post Implementing OpenTelemetry Natively in an Event Broker appeared first on Linux.com.
Activist Chris Smalls reflects on taking on Amazon, forming worker unions and digital activism in 2024
At Mozilla, we know we can’t create a better future alone, that is why each year we will be highlighting the work of 25 digital leaders using technology to amplify voices, effect change, and build new technologies globally through our Rise 25 Awards. These storytellers, innovators, activists, advocates. builders and artists are helping make the internet more […]
The post Activist Chris Smalls reflects on taking on Amazon, forming worker unions and digital activism in 2024 appeared first on The Mozilla Blog.
Andy Wingo: guix on the framework 13 amd
I got a new laptop! It’s a Framework 13 AMD: 8 cores, 2 threads per core, 64 GB RAM, 3:2 2256×1504 matte screen. It kicks my 5-year-old Dell XPS 13 in the pants, and I am so relieved to be back to a matte screen. I just got it up and running with Guix, which though easier than past installation experiences was not without some wrinkles, so here I wanted to share a recipe for what worked for me.
(I swear this isn’t going to become a product review blog, but when I went to post something like this on the Framework forum I got an error saying that new users could only post 2 links. I understand how we got here but hoo, that is a garbage experience!)
The basic deal
Upstream Guix works on the Framework 13 AMD, but only with software rendering and no wifi, and I wasn’t able to install from upstream media. This is mainly because Guix uses a modified kernel and doesn’t include necessary firmware. There is a third-party nonguix repository that defines packages for the vanilla Linux kernel and the linux-firmware collection; we have to use that repo if we want all functionality.
Of course having the firmware be user-hackable would be better, and it would be better if the framework laptop used parts with free firmware. Something for a next revision, hopefully.
On firmware
As an aside, I think the official Free Software Foundation position on firmware is bad praxis. To recall, the idea is that if a device has embedded software (firmware) that can be updated, but that software is in a form that users can’t modify, then the system as a whole is not free software. This is technically correct but doesn’t logically imply that that the right strategy for advancing free software is to forbid firmware blobs; you have a number of potential policy choices and you have to look at their expected results to evaluate which one is most in line with your goals.
Bright lines are useful, of course; I just think that with respect to free software, drawing that line around firmware is not interesting. To illustrate this point, I believe the current FSF position is that if you can run e.g. a USB ethernet adapter without installing non-free firmware, then it is kosher, otherwise it is haram. However many of these devices have firmware; it’s just that you aren’t updating it. So for example the the USB Ethernet adapter I got with my Dell system many years ago has firmware, therefore it has bugs, but I have never updated that firmware because that’s not how we roll. Or, on my old laptop, I never updated the CPU microcode, despite spectre and meltdown and all the rest.
“Firmware, but never updated” reminds me of the wires around some New York neighborhoods that allow orthodox people to leave the house on Sabbath; useful if you are of a given community and enjoy the feeling of belonging, but I think even the faithful would see it as a hack. It is like how Richard Stallman wouldn’t use travel booking web sites because they had non-free JavaScript, but would happily call someone on the telephone to perform the booking for him, using those same sites. In that case, the net effect on the world of this particular bright line is negative: it does not advance free software in the least and only adds overhead. Privileging principle over praxis is generally a losing strategy.
Installation
Firstly I had to turn off secure boot in the bios settings; it’s in “security”.
I wasn’t expecting wifi to work out of the box, but for some reason the upstream Guix install media was not able to configure the network via the Ethernet expansion card nor an external USB-C ethernet adapter that I had; stuck at the DHCP phase. So my initial installation attempt failed.
Then I realized that the nonguix repository has installation media, which is the same as upstream but with the vanilla kernel and linux-firmware. So on another machine where I had Guix installed, I added the nonguix channel and built the installation media, via guix system image -t iso9660 nongnu/system/install.scm. That gave me a file that I could write to a USB stick.
Using that installation media, installing was a breeze.
However upon reboot, I found that I had no wifi and I was using software rendering; clearly, installation produced an OS config with the Guix kernel instead of upstream Linux. Happily, at this point the ethernet expansion card was able to work, so connect to wired ethernet, open /etc/config.scm, add the needed lines as described in the operating-system part of the nonguix README, reconfigure, and reboot. Building Linux takes a little less than an hour on this machine.
Fractional scaling
At that point you have wifi and graphics drivers. I use GNOME, and things seem to work. However the screen defaults to 200% resolution, which makes everything really big. Crisp, pretty, but big. Really you would like something in between? Or that the Framework ships a higher-resolution screen so that 200% would be a good scaling factor; this was the case with my old Dell XPS 13, and it worked well. Anyway with the Framework laptop, I wanted 150% scaling, and it seems these days that the way you have to do this is to use Wayland, which Guix does not yet enable by default.
So you go into config.scm again, and change where it says %desktop-services to be:
(modify-services %desktop-services (gdm-service-type config => (gdm-configuration (inherit config) (wayland? #t))))
Then when you reboot you are in Wayland. Works fine, it seems. But then you have to go and enable an experimental mutter setting; install dconf-editor, run it, search for keys with “mutter” in the name, find the “experimental settings” key, tell it to not use the default setting, then click the box for “scale-monitor-framebuffer”.
Then! You can go into GNOME settings and get 125%, 150%, and so on. Great.
HOWEVER, and I hope this is a transient situation, there is a problem: in GNOME, applications that aren’t native Wayland apps don’t scale nicely. It’s like the app gets rendered to a texture at the original resolution, which then gets scaled up in a blurry way. There aren’t so many of these apps these days as most things have been ported to be Wayland-capable, Firefox included, but Emacs is one of them 🙁 However however! If you install the emacs-pgtk package instead of emacs, it looks better. Not perfect, but good enough. So that’s where I am.
Bugs
The laptop hangs on reboot due to this bug, but that seems a minor issue at this point. There is an ongoing tracker discussion on the community forum; like other problems in that thread, I hope that this one resolves itself upstream in Linux over time.
Other things?
I didn’t mention the funniest thing about this laptop: it comes in pieces that you have to put together 🙂 I am not so great with hardware, but I had no problem. The build quality seems pretty good; not a MacBook Air, but then it’s also user-repairable, which is a big strong point. It has these funny extension cards that slot into the chassis, which I have found to be quite amusing.
I haven’t had the machine for long enough but it seems to work fine up to now: suspend, good battery use, not noisy (unless it’s compiling on all 16 threads), graphics, wifi, ethernet, good compilation speed. (I should give compiling LLVM a go; that’s a useful workload.) I don’t have bluetooth or the fingerprint reader working yet; I give it 25% odds that I get around to this during the lifetime of this laptop 🙂
Until next time, happy hacking!
Apps availability still high
TWIF generated on Thursday, 15 Feb 2024, Week 7
Community News
@theimpulson starts the tests:
Aurora Store was updated to 4.4.1
and brings a plethora of improvements. It will be marked as suggested after a while to squash reported bugs in between. Among all the changes major ones are:
- Support for automatically updating apps (needs a supported installer/android version to auto-install the update)
- Automatic SHA256 & SHA1 verification for downloaded files
- Support for updates with signing key rotation (introduced after Android 9.0+)
- Better support for apps with shared libraries such as Chrome/Chromium and WebView
- New automatic certificate verification for updates (resolves this issue) (future update of Aurora Store will allow turning this off for interested users)
- Native Installer and Aurora Services have been deprecated (will be removed completely soon, users are advised to use Session Installer or any other supported one)
- Exporting installed apps doesn’t require storage permissions anymore
@Licaon_Kter rants about XMPP clients:
Conversations is available in F-Droid, and has been uninterruptedly since May 2014. For instance it was just updated to version 2.13.1+free
bringing support for P2P file transfers via WebRTC data channels (yes, the same magic used for calls, not the old proxy65 stuff), fixed interoperability issues with Bind 2.0 on ejabberd and bundled Let’s Encrypt root certificates for Android <= 7. Then again, for a day or so, those who wanted to get or update Conversations from “alternative centralized stores”, say via the new Aurora Store mentioned above or directly from Google Play, were not able to do so, as the app was gone, forcing the app developer to remove yet another feature from the app (the second or third one by now, we lost count) as to appease the faceless procedures.
In TWIF23 Week 50 we presented the results of the ‘Epic v. Google’ trial in the US, and we hope that with each Google move you get a hint to nudge your favourite FOSS developers to have their apps included in a decentralized store-like catalogue too, one that is not under an alphabet named corporation’s control. We understand that many devs like to publish on Play and get a stream of revenue that allows the app development to continue, while F-Droid (client, website) do not have a way to sell apps, they do have donation links, so you can contribute with a thank you, money for a coffee or one month of SMS to help your star app author.
In lock-step, Quicksy was updated to 2.13.1+free
too, luckily this app was not removed from Google Play, although it did miss all updates since October 2023.
(NOTE: P2P file transfers via WebRTC data channels work only between apps updated to version 2.13.1
. Next version is in the pipeline and will fix compatibility between multiple versions)
Spring Cleaning
Drupal Editor was archived as it was compatible with old unsupported Drupal 5 only.
Rocket.Chat’s removal was announced last week.
Newly Added Apps
7 apps were newly added
- Broker 1961 – Very attractive board game which was created in 1961 for trading shares
- Chooser – Finger picker app (so you know who’s first)
- DailyLog – A quick-logging notes app with customizable shortcut buttons
- Oblique Strategies – Over one hundred worthwhile dilemmas
- Oshi Uploader – Upload to any Oshi instance
- Play Deals – Find the latest app deals and discounts on paid apps and games in Google Play store
- WG Auto Connect – Auto connect to a WireGuard tunnel (the official Wireguard app is needed)
Updated Apps
174 more apps were updated
- AF Weather Widget was updated from
2.4
to2.5
- AVNC was updated from
2.2.3
to2.3.0
- Acode editor – Android code editor was updated from
1.8.8
to1.9.0
- Activity Manager was updated from
5.4.7
to5.4.8
- AgoraDesk: buy BTC anonymously was updated from
1.1.17
to1.1.18
- Amarok was updated from
0.8.5b3
to0.8.6b1
- Amethyst was updated from
0.83.9
to0.83.12
- Arcticons was updated from
8.6.7
to8.7.1-hotfix
- Arcticons Black was updated from
8.6.7
to8.7.1-hotfix
- Arcticons Day & Night was updated from
8.3.1
to8.7.1-hotfix
- Arcticons Material You was updated from
8.3.1
to8.7.1-hotfix
- AutoDND was updated from
3.0
to3.1
- Average data usage widget was updated from
3.0
to4.0
- Aves Libre was updated from
1.10.3
to1.10.4
- BLE Radar was updated from
0.22.6-beta
to0.22.7-beta
- Barcode Scanner was updated from
1.20.0
to1.21.0
- BendyStraw was updated from
1.0.0
to1.1.0
- BetterCounter was updated from
4.0.1
to4.1.0
- Blood pressure monitor was updated from
1.6.1
to1.6.2
- Bluemoon was updated from
1.0.3-alpha
to1.0.4
- Boxcars was updated from
1.2.9
to1.3.0
- BusTO was updated from
2.1.4
to2.1.5
- CPU Info was updated from
5.2.0
to5.3.1
- CTU Menza was updated from
1.3.4
to1.3.5
- Cache Cleaner was updated from
1.10.5
to1.10.9
- CameraFileCopy was updated from
0.5.14
to0.5.15
- Canta was updated from
1.2.1
to1.3.0
- Chip Defense was updated from
1.27
to1.28
- Cigaló was updated from
0.1.1
to0.1.2
- Clock Screensaver was updated from
1.11.0
to1.12.1
- ColorBlendr was updated from
v1.0b8
tov1.2
- Copy SMS Code – OTP Helper was updated from
1.13.0
to1.13.1
- CrossWords was updated from
4.4.199
to4.4.201
- Cuscon was updated from
4.0.0.7
to4.0.1.0
- Daily Dozen was updated from
23.1
to24
- EasySync was updated from
1.5
to1.7
- Eat Poop You Cat was updated from
1.0.7
to1.1.2
- EinkBro was updated from
11.3.1
to11.4.0
- Emacs was updated from
30.0.50
to30.0.50
- Emerald Dialer was updated from
1.0.15
to1.0.16
- Everest was updated from
1.1.5
to1.1.6
- Exodus was updated from
3.2.1
to3.2.2
- F-Droid Build Status was updated from
5.0.7
to5.1.0
- FREE Browser was updated from
2.5
to2.6
- FairEmail was updated from
1.2154
to1.2158
- Fast Draw was updated from
2.1
to2.1.1
- FastLyrics was updated from
0.5.2
to0.5.3
- Feeder was updated from
2.6.15
to2.6.16
- Fennec F-Droid was updated from
122.0.0
to122.1.0
- FlashDim – Dim your flashlight was updated from
2.3.0
to2.3.1
- FluffyChat was updated from
1.17.2
to1.17.3
- Forkyz was updated from
49
to50
- Fossify SMS Messenger was updated from
1.0.0
to1.0.1
- FreeOTP+ was updated from
3.1
to3.1.1
- Gallery was updated from
2.0.0
to2.1.0
- Gauguin was updated from
0.19.1
to0.20.0
- Green Pass PDF Wallet was updated from
3.4.0
to3.4.4
- GreenStash was updated from
2.9.0
to3.0.0
- Iconeration was updated from
1.3.1
to1.3.2
- Image Toolbox was updated from
2.5.1
to2.6.1-alpha01
- Infomaniak Mail was updated from
1.2.0
to1.2.1
- Infomaniak kDrive was updated from
4.4.3
to4.4.4
- Insular was updated from
6.0.5-1733c7cc
to6.3-e46a1948
- Interval Timer was updated from
1.0.7
to1.0.8
- Intra was updated from
1.3.7
to1.3.9
- Inure App Manager (Trial) was updated from
Build99.0.3
toBuild99.1.0
- Invoice Ninja was updated from
5.0.152
to5.0.154
- Jami was updated from
20240131-01
to20240206-01
- Jerboa for Lemmy was updated from
0.0.55
to0.0.57
- Joplin was updated from
2.13.10
to2.14.6
- Keep Alive was updated from
1.1.2
to1.1.3
- Keyoxide was updated from
2.0.0
to2.0.2
- Kotatsu was updated from
6.6.8
to6.7
- KurobaEx was updated from
v1.3.31
tov1.3.33
- Lexica was updated from
3.12.0
to3.13.0
- Library App VideLibri was updated from
2.765
to2.782
- Linphone – open source SIP client was updated from
5.2.2
to5.2.3
- Linwood Butterfly was updated from
2.0.2
to2.0.3-rc.0
- LocalMonero: buy XMR privately was updated from
1.1.17
to1.1.18
- MIFARE Classic Tool was updated from
4.2.1
to4.2.2
- Massive was updated from
2.9
to2.18
- Mill was updated from
4.0.4
to4.0.5
- Mirror was updated from
1.1.0
to1.1.1
- MoeMemos was updated from
0.7.2
to0.7.3
- Money Manager Ex was updated from
2024.02.02
to2024.02.08
- Mull was updated from
122.0.0
to122.1.0
- Mumla was updated from
3.6.6
to3.6.7
- Musify was updated from
7.4.0
to7.5.0
- My Expenses was updated from
3.7.2.1
to3.7.3.2
- Myne: Ebook Downloader was updated from
2.8.0
to2.9.0
- NOVA Video Player was updated from
6.2.54
to6.2.57
- NanoLedger was updated from
0.1.5
to0.1.6
- NextDNS Manager was updated from
4.9.1
to4.9.2
- Nextcloud Passwords was updated from
1.0.7
to1.0.8
- Obtainium was updated from
1.0.1
to1.0.2
- Oinkoin was updated from
1.0.46
to1.0.48
- Open Stable Diffusion was updated from
1.8
to1.9
- OpenAthena™ for Android was updated from
0.19.6
to0.19.8
- OpenKeychain: Easy PGP was updated from
5.8.2
to6.0.0
- OpenTracks was updated from
v4.11.0
tov4.11.1
- OpenVK Legacy was updated from
1.2.234-f
to1.2.236-f
- Openlib was updated from
1.0.4
to1.0.5
- Openreads was updated from
2.3.0
to2.4.1
- Opus 1 Music Player was updated from
2.63
to2.63.1
- Osram Remote was updated from
1.2.4
to1.2.5
- Peristyle was updated from
1.28_beta
to1.30_beta
- Pie Launcher was updated from
1.17.5
to1.18.3
- PipePipe was updated from
3.2.0
to3.2.1
- PixelDroid was updated from
1.0.beta27
to1.0.beta29
- PlainApp: File & Web Access was updated from
1.2.35
to1.2.37
- Pocket Broomball was updated from
5.1.1
to5.1.2
- QuickWeather was updated from
2.6.2
to2.6.3
- Railway station photos was updated from
15.1.0
to15.2.0
- Read You was updated from
0.9.11
to0.9.12
- RetroArch was updated from
1.16.0
to1.17.0
- RiMusic was updated from
0.6.19
to0.6.21
- Saber was updated from
0.19.2
to0.19.3
- Sayboard was updated from
v4.1.1
tov4.1.2
- SelfPrivacy was updated from
0.10.0
to0.10.1
- Shattered Pixel Dungeon was updated from
2.3.1
to2.3.2
- Shitter was updated from
3.5.3
to3.5.4
- SiYuan was updated from
2.12.6
to2.12.7
- SilverDict was updated from
1.3.0
to1.4.1
- Simple Time Tracker was updated from
1.35
to1.36
-
**[SimpleLogin Anti-spam](https://f-droid.org/packages/io.simplelogin.android.fdroid)** was updated from 1.20.1
to1.21.1
- SimpleX Chat was updated from
5.5.1
to5.5.2
- Squawker was updated from
3.6.5
to3.7.1
- Standard Notes was updated from
3.188.1
to3.189.4
- Suntimes was updated from
0.15.10
to0.15.11
- Super Retro Mega Wars was updated from
0.32.1
to0.32.3
- Swatch .beat clock was updated from
v1.2.1
tov1.2.1-fdroid-metadata
- Syncthing was updated from
1.27.2.1
to1.27.3
- Syncthing-Fork was updated from
1.27.2.1
to1.27.3.0
- Table Habit was updated from
1.10.4
to1.10.5
- Tabletop Tools was updated from
1.27
to1.28
- Tailscale was updated from
1.57.72-tca48db0d6-gdcca09fe7f8
to1.58.2-tb0e1bbb62-gcd1f0649958
- Tarock Palčka was updated from
1.0.1
to1.0.3
- Timed Shutdown [No Root] was updated from
v2.3
tov2.4
- Tiny Weather Forecast Germany was updated from
0.61.4
to0.62.0
- TorrServe was updated from
MatriX.129.2.F-Droid
toMatriX.129.3.F-Droid
- Trekarta – offline outdoor map was updated from
2024.01
to2024.02
- Tuner was updated from
6.6.1
to6.6.2
- Tuta Mail was updated from
3.121.4
to3.122.4
- Tux Paint was updated from
0.9.32
to0.9.32-1
- Unciv was updated from
4.10.6
to4.10.8
- Unexpected Keyboard was updated from
1.25.0
to1.26.0
- V2EX was updated from
2.8.9
to2.9.4
- Valv was updated from
1.5.2
to1.6.1
- Varengold activeTAN was updated from
2023-09-25
to2024-02-05
- Vinyl Music Player was updated from
1.7.0
to1.8.0
- Voyager for Lemmy was updated from
1.38.0
to1.39.0
- Wattz was updated from
1.14
to1.17
- Weechat-Android was updated from
1.8.1
to1.9
- WiFi Widget was updated from
1.4.04
to1.4.05
- Wulkanowy was updated from
2.3.5
to2.4.0
- Xray was updated from
4.2.1
to5.3.1
- Xtra was updated from
2.28.0
to2.29.0
- YAACC was updated from
4.0.3
to4.1.0
- Your local weather was updated from
5.8.23
to5.8.24
- Zapp was updated from
8.4.0
to8.5.0
- aTalk was updated from
3.3.3
to3.3.5
- addy.io (formerly AnonAddy) was updated from
v5.0.1
tov5.0.2
- baresip was updated from
59.4.0
to59.4.1
- droidVNC-NG was updated from
2.1.7
to2.2.0
- e1547 – e621 browser was updated from
16.2.8
to18.0.0
- eduVPN was updated from
3.2.1
to3.2.2
- ente – encrypted photo storage was updated from
0.8.48
to0.8.56
- ente Authenticator was updated from
2.0.30
to2.0.34
- fWallet was updated from
1.1.2
to1.1.4
- idTech4A++ was updated from
1.1.0harmattan37natasha
to1.1.0harmattan38natasha
- jtx Board journals¬es&tasks was updated from
2.07.00.ose
to2.07.01.ose
- ntodotxt was updated from
0.4.4
to0.4.7
- openHAB Beta was updated from
3.9.2-beta
to3.9.3-beta
- whoBIRD was updated from
1.5
to1.6
Thank you for reading this week’s TWIF 🙂
Please subscribe to the RSS feed in your favourite RSS application to be updated of new TWIFs when they come up.
You are welcome to join the TWIF forum thread. If you have any news from the community, post it there, maybe it will be featured next week 😉
Apple intentionally kills web applications for EU users in iOS 17.4 onward to spite its EU users
https://rumble.com/v4digai-shopx.ae-is-dubais-best-online-seller-shopping-platform-in-uae..
Video by via Dailymotion Source Shopx.ae is the United Arab Emirates’ largest online shopping platform for Fashion, Electronics, Mobile Phones, and many more!Shopx. ae Shopx.ae is the United Arab Emirates’ largest online shopping platform Shopx. ae Shopx.ae is Dubai’s Best Online seller shopping platform in UAE Shopx. ae @aadrofashion Bily Bazaar Bily Foundation Babul Hasan…
ASSEGNO di INCLUSONE messaggio INPS Esiti ACCOLTA SOSPESA RESPINTA che significa
Video by via Dailymotion Source Assegno di inclusione, arriva il messaggio ufficiale INPS con 3 novità e chiarimenti sugli esiti delle domande accolte, quelle respinte e quelle sospese. Ma non sono proprie buone notizie, perciò vediamo tutto nel dettaglio.Inps ha pubblicato il messaggio numero 684 del 2024. Con questo messaggio chiarisce parecchi aspetti sugli esiti…