Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Type
/
to search
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
pythonStudy2017
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Modules
_elementtree.c
on
3.3
User selector
All users
All time
Commit history
Commits on Nov 28, 2013
Fix indentation from previous commit
eliben
committed
4b79518
View commit details
Copy full SHA for 4b79518
View code at this point
Browse repository at this point
Issue #19815: Fix segfault when parsing empty namespace declaration.
Show description for 5dd40e5
eliben
committed
5dd40e5
View commit details
Copy full SHA for 5dd40e5
View code at this point
Browse repository at this point
Commits on Oct 23, 2013
Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers.
pitrou
committed
09fcb72
View commit details
Copy full SHA for 09fcb72
View code at this point
Browse repository at this point
Commits on Sep 18, 2013
- followup for issue #18997, make _clear_joined_ptr static.
doko42
committed
0648bf7
View commit details
Copy full SHA for 0648bf7
View code at this point
Browse repository at this point
Commits on Sep 13, 2013
Issue #18997: fix ElementTree crash with using pickle and __getstate__.
Show description for dd3661e
eliben
committed
dd3661e
View commit details
Copy full SHA for dd3661e
View code at this point
Browse repository at this point
Commits on Jul 20, 2013
Add missing check of PyDict_Update()'s return value in _elementtree.c
Show description for 7ed4294
tiran
committed
7ed4294
View commit details
Copy full SHA for 7ed4294
View code at this point
Browse repository at this point
Commits on Jul 19, 2013
#18480: Add missing PyType_Ready call to _elementtree extension
ronaldoussoren
committed
138d080
View commit details
Copy full SHA for 138d080
View code at this point
Browse repository at this point
Commits on May 25, 2013
Issue #13612: handle unknown encodings without a buffer overflow.
Show description for 6dc32b3
eliben
committed
6dc32b3
View commit details
Copy full SHA for 6dc32b3
View code at this point
Browse repository at this point
Commits on May 22, 2013
Issue #16986: ElementTree now correctly parses a string input not only when
Show description for 66d53fa
serhiy-storchaka
committed
66d53fa
View commit details
Copy full SHA for 66d53fa
View code at this point
Browse repository at this point
Commits on May 19, 2013
Issue #17989: fix typo in error message
eliben
committed
6a55dc3
View commit details
Copy full SHA for 6a55dc3
View code at this point
Browse repository at this point
Commits on May 18, 2013
Issue #17901: fix TreeBuilder construction for an explicit element_factory=None
Show description for 08231a9
eliben
committed
08231a9
View commit details
Copy full SHA for 08231a9
View code at this point
Browse repository at this point
Issue #17989: element_setattro returned incorrect error value.
Show description for ef9683b
eliben
committed
ef9683b
View commit details
Copy full SHA for ef9683b
View code at this point
Browse repository at this point
Commits on Apr 22, 2013
Issue #17736: fix misleading comment in _elementtree.c
Show description for d4cb4b7
eliben
committed
d4cb4b7
View commit details
Copy full SHA for d4cb4b7
View code at this point
Browse repository at this point
Commits on Jan 13, 2013
Issue #16922: fixed findtext() to return empty Unicode string instead of empty bytes object when there's no text.
Show description for 25771b3
eliben
committed
25771b3
View commit details
Copy full SHA for 25771b3
View code at this point
Browse repository at this point
Clean trailing whitespace in _elementtree.c
eliben
committed
4583990
View commit details
Copy full SHA for 4583990
View code at this point
Browse repository at this point
Commits on Jan 12, 2013
Issue #16076: check for return value of PyTuple_New for args (following
Show description for 799e3ed
eliben
committed
799e3ed
View commit details
Copy full SHA for 799e3ed
View code at this point
Browse repository at this point
Issue #16076: fix refleak in pickling of Element.
Show description for b8f6dc8
eliben
committed
b8f6dc8
View commit details
Copy full SHA for b8f6dc8
View code at this point
Browse repository at this point
Commits on Jan 10, 2013
Issue #16913: Fix Element.itertext()'s handling of text with XML entities.
Show description for e6174ca
eliben
committed
e6174ca
View commit details
Copy full SHA for e6174ca
View code at this point
Browse repository at this point
Issue #16076: make _elementtree.Element pickle-able in a way that is compatible
Show description for 698bdb2
eliben
committed
698bdb2
View commit details
Copy full SHA for 698bdb2
View code at this point
Browse repository at this point
Commits on Jan 5, 2013
The get() and iter() are now able to accept keyword arguments.
Show description for a873690
eliben
committed
a873690
View commit details
Copy full SHA for a873690
View code at this point
Browse repository at this point
Commits on Oct 4, 2012
Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element element_factory (fixes a regression in SimpleTAL).
pitrou
committed
ee32931
View commit details
Copy full SHA for ee32931
View code at this point
Browse repository at this point
Commits on Oct 1, 2012
Sanitize and modernize some of the _elementtree code (see issue #16089).
pitrou
committed
c194884
View commit details
Copy full SHA for c194884
View code at this point
Browse repository at this point
Commits on Sep 20, 2012
Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t.
Show description for ca8aa4a
pitrou
committed
ca8aa4a
View commit details
Copy full SHA for ca8aa4a
View code at this point
Browse repository at this point
Commits on Jul 21, 2012
Raise ImportError if pyexpat's version is incompatible
eliben
committed
7b31b1a
View commit details
Copy full SHA for 7b31b1a
View code at this point
Browse repository at this point
Raise ImportError if pyexpat's version is incompatible
eliben
committed
ef391ac
View commit details
Copy full SHA for ef391ac
View code at this point
Browse repository at this point
Commits on Jul 17, 2012
Merge for #14988
eliben
committed
b48ff7f
View commit details
Copy full SHA for b48ff7f
View code at this point
Browse repository at this point
ISsue #14988: restore Python 2's behavior of raising ImportError when unable to load pyexpat, instead of a SystemError/RuntimeError
eliben
committed
66099b0
View commit details
Copy full SHA for 66099b0
View code at this point
Browse repository at this point
Commits on Jun 17, 2012
Issue #14055: Add __sizeof__ support to _elementtree.
loewis
committed
bce1666
View commit details
Copy full SHA for bce1666
View code at this point
Browse repository at this point
Commits on Jun 15, 2012
Fix windows compilation problems caused by previous commit.
eliben
committed
113da64
View commit details
Copy full SHA for 113da64
View code at this point
Browse repository at this point
Replace the iter/itertext methods of Element in _elementtree with true C implementations, instead of the bootstrapped Python code. In addition to being cleaner (removing the last remains of the boo…
Show description for 64d11e6
eliben
committed
64d11e6
View commit details
Copy full SHA for 64d11e6
View code at this point
Browse repository at this point
Commits on Jun 3, 2012
Fix unterminated keyword array passed to PyArg_ParseTupleAndKeywords
eliben
committed
c68e136
View commit details
Copy full SHA for c68e136
View code at this point
Browse repository at this point
Commits on Jun 1, 2012
Issue #14007: implement doctype() method calling in XMLParser of _elementtree.
Show description for 2b6b73e
eliben
committed
2b6b73e
View commit details
Copy full SHA for 2b6b73e
View code at this point
Browse repository at this point
We're always building _elementtree with USE_PYEXPAT_CAPI, so the #ifdefs in
Show description for 20d4174
eliben
committed
20d4174
View commit details
Copy full SHA for 20d4174
View code at this point
Browse repository at this point
Issue #14007: make XMLParser a real subclassable type exported from _elementtree. +cleanups
eliben
committed
52467b1
View commit details
Copy full SHA for 52467b1
View code at this point
Browse repository at this point
Commits on May 30, 2012
Issue #14007: implemented the 'element_factory' feature of TreeBuilder in
Show description for 48d358b
eliben
committed
48d358b
View commit details
Copy full SHA for 48d358b
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.