| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
LE_MAGIC; it breaks on Tru64.
|
|
|
|
|
|
| |
Since the application never gets to see the namespace abbreviation
used in the XML document, but some applications may need to know them,
we provide this method.
|
|
|
|
| |
close SF patch #101354
|
|
|
|
|
|
|
|
| |
according to the MS docs it enables exception-handling, and (according
to Alex Martelli <aleaxit@yahoo.com>) is needed to compile without
getting warnings from standard C++ library headers. Apparently
it doesn't cause any problems with C code, so I haven't bothered
conditionalizing the use of /GX.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* deletes cache
* adds firstweekday and setfirstweekday functions that allow user to control
which day of the week is first when displaying calendars
* adds month, week, calendar functions that return their results instead of
printing them
* adds symbolic constants MONDAY, ..., SUNDAY so users need not remember the
ordinal values of the weekdays
|
|
|
|
| |
class-based APIs.
|
|
|
|
|
| |
Martin von Loewis, Peter Funk, James Henstridge, Francois Pinard, and
Marc-Andre Lemburg.
|
|
|
|
|
|
|
| |
In test_poll1(), unregister file descriptors as they're closed,
and also close the read end of the pipe
In test_poll2(), make the code assume less about the combinations of flag
bits that will be returned
|
|
|
|
| |
-- tg@FreeBSD.org
|
|
|
|
| |
This helps on 4.4BSD-based systems.
|
| |
|
|
|
|
|
|
|
|
| |
Changed 'core.setup()' so it sets them to reasonable defaults.
Tweaked how the "usage" string is generated: 'core' now provides
'gen_usage()', which is used instead of 'USAGE'.
Modified "build_py" and "sdist" commands to refer to
'self.distribution.script_name' rather than 'sys.argv[0]'.
|
| |
|
|
|
|
| |
Fix bad operator precedence: should be "(metadata or '') + '\n'".
|
| |
|
|
|
|
|
| |
Again due to the duplicate copies of test_support, the checked-in
"expected output" file actually contains verbose-mode output.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
subtle breakage on Windows (the test is skipped here, but the TestSkipped
exception wasn't recognized as such, because of duplicate copies of
test_support got loaded; so the test looks like a failure under Windows
instead of a skip).
Repaired the import, but
THIS TEST *WILL* FAIL ON OTHER SYSTEMS NOW!
Again due to the duplicate copies of test_support, the checked-in
"expected output" file actually contains verbose-mode output. I can't
generate the *correct* non-verbose output on my system. So, somebody
please do that.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The known bug (bogus error message when an empty file is
extracted) is fixed.
Other changes:
- The target-compile and target-optimize flags of bdist_wininst
are gone. It is no longer possible to compile the python
files during installation.
- The zlib module is no longer required or used by bdist_wininst.
- I moved the decompression/extraction code into a separate
file (extract.c).
- The installer stub is now compressed by UPX (see
http://upx.tsx.org/). This reduces the size of the exe
(and thus the overhead of the final installer program)
from 40 kB to 16 kB.
- The installer displays a more uptodate user wizard-like
user interface, also containing a graphic: Just's Python Powered logo.
(I could not convince myself to use one of the BeOpen logos).
- The installation progress bar now moves correctly.
|
| |
|
|
|
|
| |
don't assign None to any attributes of the Extension object.
|
|
|
|
| |
Add some test cases.
|
| |
|
|
|
|
|
| |
to be extended somewhat -- right now it only tests the .writelines()
method.
|
| |
|
|
|
|
|
| |
language found in the environment variable, contributed by James
Henstridge.
|
|
|
|
| |
useless. So the test of the dcgettext() function is removed.
|
|
|
|
|
| |
useless. So the category argument on _find() is removed, as is the
dcgettext() function.
|
|
|
|
|
| |
cvs tree. It creates the directory and gettext.mo file on the fly,
from the base64 encode binary data.
|
| |
|
| |
|
| |
|
|
|
|
| |
some changes.
|
|
|
|
| |
Don't people *test* their changes?
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
rfc822 (Addresslist) modules. Also a preliminary testcase for augmented
assignment, which should actually be merged with the test_class testcase I
added last week.
|
|
|
|
|
|
|
|
|
|
| |
so that a subclass can override it.
This partly addresses Bug #112634 -- but the documentation is still
wrong, since it suggests that you can set self.version *after* calling
the base class __init__. In fact it must be done *before*.
I'll fix that too.
|
|
|
|
|
|
|
| |
it fail on a TabError (inconsistent tab/space usage)).
Removed a comment about including a test since there is a regression test
for this module.
|
|
|
|
| |
fields with quoted values (as in Path="/acme")
|
| |
|
|
|
|
| |
Make it easier to use HTTP POST with urlretrieve().
|
|
|
|
|
|
|
| |
Update the test suite for the changes introduced by the EXTENDED_ARG
opcode.
This closes the regression test changes of SourceForge patch #100893.
|
|
|
|
|
|
|
|
|
| |
Add the EXTENDED_ARG opcode to the virtual machine, allowing 32-bit
arguments to opcodes instead of being forced to stick to the 16-bit
limit. This is especially useful for machine-generated code, which
can be too long for the SET_LINENO parameter to fit into 16 bits.
This closes the implementation portion of SourceForge patch #100893.
|
| |
|
|
|
|
| |
name and the ":" that separates it from the value. (Minor cleanup.)
|