<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: sumit mishra</title>
    <description>The latest articles on DEV Community by sumit mishra (@ossm).</description>
    <link>https://dev.to/ossm</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3081332%2F371a4a28-b074-40e8-999b-88f8b89e0263.jpg</url>
      <title>DEV Community: sumit mishra</title>
      <link>https://dev.to/ossm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ossm"/>
    <language>en</language>
    <item>
      <title>Python 3.15 Release Highlights</title>
      <dc:creator>sumit mishra</dc:creator>
      <pubDate>Thu, 27 Aug 2026 11:23:29 +0000</pubDate>
      <link>https://dev.to/ossm/python-315-release-highlights-21b</link>
      <guid>https://dev.to/ossm/python-315-release-highlights-21b</guid>
      <description>&lt;p&gt;Python 3.15 has reached Release Candidate 1, and the final release is expected on October 1, 2026.&lt;/p&gt;

&lt;p&gt;I went through the changes and tried to summarize the ones that seem most relevant for everyday Python development without going through all the PEP numbers.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Faster startup with lazy imports&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Python 3.15 introduces lazy imports, which means some modules can be loaded only when they are actually needed instead of being loaded immediately.&lt;/p&gt;

&lt;p&gt;This could help applications and CLI tools that spend a noticeable amount of time importing modules before doing any actual work.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;UTF-8 becomes the default&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;UTF-8 is becoming the default encoding, which should reduce encoding-related problems, especially when code is running on different operating systems.&lt;/p&gt;

&lt;p&gt;This should make situations where something works on one computer but fails because of a different system encoding less common.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Built-in immutable dictionaries&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Python 3.15 adds a built-in &lt;code&gt;frozendict&lt;/code&gt;-style immutable mapping.&lt;/p&gt;

&lt;p&gt;Similar to how a tuple provides an immutable alternative to a list, this gives Python developers a standard way to work with dictionaries that cannot be modified.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;JIT improvements&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The JIT compiler continues to improve in Python 3.15.&lt;/p&gt;

&lt;p&gt;Early benchmarks show performance improvements in some workloads, including roughly 8–9% on Linux and larger improvements in some Apple Silicon tests.&lt;/p&gt;

&lt;p&gt;These numbers will obviously depend on the workload, so I would wait for more benchmarks before making broader conclusions.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;New profiler: Tachyon&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Python 3.15 also introduces Tachyon, a new sampling profiler designed for very low overhead.&lt;/p&gt;

&lt;p&gt;It can sample running programs at very high frequencies and can also be attached to an already-running process.&lt;/p&gt;

&lt;p&gt;This could be useful for finding performance problems without having to restart an application with a profiler attached from the beginning.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Some terminal improvements&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The interactive Python experience is getting a few smaller improvements, including colored error messages and prompts.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;sqlite3&lt;/code&gt; command-line interface also gets SQL keyword completion.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Free-threaded Python is still opt-in&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Python 3.15 does not make the no-GIL/free-threaded build the default.&lt;/p&gt;

&lt;p&gt;It is still something you have to explicitly use.&lt;/p&gt;

&lt;p&gt;However, free-threaded Python is becoming more mature, including improvements to ABI support that should make it easier for C extension developers to support it.&lt;/p&gt;

&lt;p&gt;Overall, Python 3.15 doesn't look like a release that completely changes how Python is written. Most of the changes are focused on performance, tooling, and improving some long-standing parts of the language.&lt;/p&gt;

&lt;p&gt;Since this is already RC1, the major feature set should be mostly locked and the remaining work should mainly be bug fixes and final polishing.&lt;/p&gt;

&lt;p&gt;Has anyone here been testing the Python 3.15 beta or RC?&lt;/p&gt;

&lt;p&gt;I'm especially interested in whether lazy imports have caused compatibility problems with existing projects.&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
