| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
erroring out.
|
| |
|
|
|
|
| |
(closes SF bug #1008998)
|
|
|
|
| |
(closes SF bug #1093173)
|
|
|
|
| |
(closes SF bug #853800; markup adjusted)
|
|
|
|
| |
'release24-maint'.
|
|
|
|
| |
(closes SF patch #1084092; modified per comments in SF)
|
|
|
|
| |
(closes SF patch #1031233; modified)
|
|
|
|
| |
(closes SF patch #1104868)
|
|
|
|
| |
(closes SF patch #1094815)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Clarified that the returned object is file-like rather than an actual file.
|
|
|
|
| |
Fix and test for SF bug #1098990: codec readline() splits lines apart.
|
|
|
|
|
| |
text mode may cause newline translations, making the actual size of the content
transmitted *less* than the content-length.
|
|
|
|
|
|
| |
treat '?' as a delimiter. Previously, the 'network location' (<authority> in
RFC 2396) would become 'www.example.com?query=spam', while RFC 2396 does not
allow a '?' in <authority>. See bug #548176 for further discussion.
|
|
|
|
|
| |
get_method, removing some duplication and gaining some flexibility in the
process.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Document hasFeature(), createDocument(), CreateDocumentType(),
hasAttribute(), hasAttributeNS().
* In the documentation for createDocument(), it is now stated that the Python
DOM API allows implementations to forego creation of the document element
child node, if no namespace and local name arguments are given. (This
possibility is left open and unaddressed in the W3C spec).
* Addition by me: use 'name' rather than 'attname', for consistency with the
DOM specification and the Python DOM API implementation.
|
| |
|
| |
|
|
|
|
| |
Allow relative URLs for included databases and packages.
|
|
|
|
|
|
|
| |
MacOSX: if we cannot use -undefined dynamic_lookup (such as on 10.2 or earlier)
we link extension directly against the dynamic library in the framework in
stead of against the framework. This will fix building extensions for 2.3
after 2.4 has been installed too.
|
|
|
|
|
| |
Always set CONFIGURE_MACOSX_DEPLOYMENT_TARGET otherwise it may be set
to an empty value and distutils will get confused lateron.
|
|
|
|
| |
Workaround for the fact that urllib2 doesn't default to "file:" urls.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
After discussion on the PythonMac-SIG it was decided that it is better
to make using "-undefined dynamic_lookup" for linking extensions more
automatic on 10.3 and later. So if we're on that platform and
MACOSX_DEPLOYMENT_TARGET is not set we now set it to the current OSX
version during configure. Additionally, distutils will pick up the
configure-time value by default.
|
|
|
|
|
|
| |
- When doing a frameworkinstall test whether Apple's Python 2.3 may
need fixing
- Added quotes around destroot arguments.
|
|
|
|
| |
'release24-maint'.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- Added an "installer" flavor, which uses the "open" command to install
something (overridable through Install-command entry)
- Hidden status is now determined by flavor == hidden, not by
missing Download-URL. Hidden packages behave like installer packages.
- Made some error messages a bit more understandable.
Because there's new functionality the version has been upped to 0.5.
|
|
|
|
| |
prevent leaving zombies.
|
|
|
|
| |
(Removed at Ping's request.)
|
|
|
|
| |
(Contributed by Jiwon Seo.)
|
| |
|
|
|
|
|
|
| |
Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destroot
option to various tools, and do the right thing when we're doing a destroot
install.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
more. Thanks to Simon Percivall!
The patch makes changes to inspect.py in two places:
* the pattern to match against functions at line 436 is
modified: lambdas should be matched even if not
preceded by whitespace, as long as "lambda" isn't part
of another word.
* the BlockFinder class is heavily modified. Changes are:
- checking for "def", "class" or "lambda" names
before setting self.started to True. Then checking the
same line for word characters after the colon (if the
colon is on that line). If so, and the line does not
end with a line continuation marker, raise EndOfBlock
immediately.
- adding self.passline to show that the line is to be
included and no more checking is necessary on that
line. Since a NEWLINE token is not generated when a
line continuation marker exists, this allows getsource
to continue with these functions even if the following
line would not be indented.
Don't backport the tests, as these have been too heavily modified on the trunk.
|
| |
|
| |
|
| |
|
|
|
|
| |
Fix wrong variable name.
|
| |
|
|
|
|
| |
'release24-maint'.
|
|
|
|
| |
Fix wrong variable name.
|
|
|
|
|
|
|
| |
- getDefaultDatabase wasn't listed in __all__.
- using a different database for non-final releases should only be done
for X.Y.0. Non-final micro releases can use the default database just fine,
as they are required to be backward compatible.
|
|
|
|
| |
to an uninitialized pointer: fixes the problem and adds a test case
|