compare-cpython-versions
Compare CPython source code between two Python versions to identify changes in headers and structs. Use this when adding support for a new Python version to understand what changed between versions.
Install
mkdir -p .claude/skills/compare-cpython-versions && curl -L -o skill.zip "https://mcp.directory/api/skills/download/6693" && unzip -o skill.zip -d .claude/skills/compare-cpython-versions && rm skill.zipInstalls to .claude/skills/compare-cpython-versions
About this skill
Compare CPython Versions Skill
This skill helps compare CPython source code between two Python versions to identify changes in headers, structs, and APIs that affect our codebase.
When to Use This Skill
Use this skill when:
- Adding support for a new Python version
- Need to understand what changed between versions
- Investigating compatibility issues
- Have a list of headers/structs from
find-cpython-usageskill
Key Principles
- Compare systematically - Focus on headers and structs identified in Step 1
- Use multiple methods - Git diff, manual diff, or AI-assisted comparison
- Document changes - Note all breaking changes and API modifications
- Check context - Understand why changes were made (PEPs, GitHub issues)
How This Skill Works
Step 1: Prepare CPython Repository
# Create ~/dd directory if it doesn't exist
mkdir -p ~/dd
# Clone CPython repository if needed (to ~/dd/cpython)
if [ ! -d ~/dd/cpython ]; then
git clone https://github.com/python/cpython.git ~/dd/cpython
cd ~/dd/cpython
git fetch --tags
else
cd ~/dd/cpython
# Update existing repository
git fetch --tags
git fetch origin
fi
Step 2: Compare Specific Headers
Using the list of headers from find-cpython-usage, compare each header between
the old version and new version. Replace OLD_VERSION and NEW_VERSION with the
actual version tags (e.g., v3.13.0, v3.14.0):
# Compare specific headers between versions
git diff OLD_VERSION NEW_VERSION -- Include/internal/pycore_frame.h
git diff OLD_VERSION NEW_VERSION -- Include/frameobject.h
# Compare all internal headers
git diff OLD_VERSION NEW_VERSION -- 'Include/internal/pycore*.h'
# Compare specific struct definitions
git diff OLD_VERSION NEW_VERSION -- Include/internal/pycore_frame.h | grep -A 20 "struct _PyInterpreterFrame"
Step 3: Identify Changes
For each header/struct, look for:
Struct Changes:
- Field additions
- Field removals
- Field type changes
- Field reordering
- Struct moves to different headers
API Changes:
- Removed functions/structures
- New functions/structures
- Changed function signatures
- Deprecated APIs
Header Changes:
- Headers moved to different locations
- Headers split or merged
- New headers introduced
Step 4: Analyze Impact
For each change identified:
-
Understand the change:
-
Why was it changed? (Check Python's What's New, PEPs, or GitHub issues)
-
Is it a breaking change or backward compatible?
-
What's the replacement API?
-
Find the specific commit(s) that introduced the change:
# Find commits that modified a specific file between versions git log OLD_VERSION..NEW_VERSION -- Include/internal/pycore_frame.h # Find commits that mention a specific struct or function git log OLD_VERSION..NEW_VERSION --all --grep="_PyInterpreterFrame" -- Include/ # Show the commit that introduced a specific change git log -p OLD_VERSION..NEW_VERSION -S "struct _PyInterpreterFrame" -- Include/ -
Find related GitHub issues:
- Check commit messages for issue references (e.g.,
gh-123923,#123923) - Search CPython GitHub issues:
https://github.com/python/cpython/issues - Look for "What's New" documentation:
https://docs.python.org/3/whatsnew/ - Check PEPs if the change is part of a larger feature
- Check commit messages for issue references (e.g.,
-
-
Assess impact:
- Which files in our codebase are affected?
- What functionality might break?
- Are there alternative approaches?
-
Document findings:
- Create a summary document of key changes
- Note any breaking changes
- List files that need updates
Step 5: Use AI Tools (Optional)
You can use AI coding assistants to help analyze differences by:
- Providing header file contents from both versions
- Asking about specific struct changes
- Understanding migration paths
Common Change Patterns
When comparing versions, look for these types of changes (examples):
Struct Field Changes:
- Field type changes (e.g., pointer types → tagged pointer types)
- Field renamed
- Field removed and replaced with different mechanism
- Field reordering
Header Moves:
- Internal headers moved to new locations
- Structs moved between headers
- Headers split or merged
API Deprecations:
- Internal functions removed
- Public API replacements available
- Function signature changes
Output Format
After running this skill, you should have:
- A list of all changed headers
- A list of all changed structs with details
- Impact assessment for each change
- Files in our codebase that need updates
Related
- find-cpython-usage skill: Use to identify what to compare
More by DataDog
View all skills by DataDog →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversEmpower your CLI agents with NotebookLM—connect AI tools for citation-backed answers from your docs, grounded in your ow
dbt bridges data build tool resources and natural language, enabling top BI software features, metadata discovery, and d
Unlock seamless Salesforce org management with the secure, flexible Salesforce DX MCP Server. Streamline workflows and b
Effortlessly manage Netlify projects with AI using the Netlify MCP Server—automate deployment, sites, and more via natur
Experience cutting-edge virtual try on technology with HeyBeauty. Instantly see how clothing looks on you before you buy
Use our diff checker online to compare files on line. Generate unified diffs with precise 3-line context for easy code r
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.