Neal Norwitz
ffb0d90a6e
Handle ssize_t
2006-04-06 08:07:25 +00:00
Neal Norwitz
915ae41b3a
Handle error conditions from PyString_ConcatAndDel().
2006-04-06 08:06:52 +00:00
Neal Norwitz
b038333d4b
Handle ssize_t
...
No need to INCREF then let PyString_ConcatAndDel() DECREF. Just
use PyString_Concat().
Handle error condition if we can't concat.
2006-04-06 08:05:53 +00:00
Neal Norwitz
5102c4e385
Hopefully this makes test_urllib2 have inconsistent leak results
2006-04-06 08:00:20 +00:00
Neal Norwitz
a1f9b7f50f
I don't think we know of any tests that really leak anymore
...
(other than those in leakers).
2006-04-06 07:58:59 +00:00
Anthony Baxter
04b9403e5b
Fix for failure of test_urllib2 breaking test_mimetypes (SF bug 1464978)
...
will backport.
2006-04-06 07:31:31 +00:00
Anthony Baxter
e94e3b440f
In some environments (under screen, in a chroot) curses doesn't support
...
mouse events. This makes the test fail. Catch that case and don't run
the tests. Should make the debian/ubuntu buildbots that run in a chroot
work again.
Will backport to release24-maint.
2006-04-06 07:12:39 +00:00
Georg Brandl
d9da722d85
Bug #1451341 : find fuzzy marks correctly.
2006-04-06 06:44:33 +00:00
Fred Drake
70d044ba67
remove more cruft no longer needed
2006-04-06 01:32:26 +00:00
Fred Drake
9ea179fa7d
remove much of the Python-version compatibility cruft; the minimum Python
...
version this should support is Python 2.3
2006-04-06 01:29:04 +00:00
Fred Drake
8038163ee6
revert incomplete changes committed by accident
2006-04-06 00:18:28 +00:00
Fred Drake
ca30e1d5ec
update URL to reflect new website
2006-04-06 00:17:08 +00:00
Thomas Heller
3c423a04ba
Explicitely use 'signed char', to avoid problems on platforms with unsigned char type.
2006-04-05 20:34:18 +00:00
Thomas Heller
0890de3be0
Explicitely use 'signed char', to avoid problems on platforms with unsigned char type.
2006-04-05 19:51:19 +00:00
Thomas Heller
fb8f83b33f
One test still fails on the ia64 debian box.
2006-04-05 19:01:35 +00:00
Tim Peters
3b1c01d4b6
Fixed error in comment for new PY_SSIZE_T_MIN.
2006-04-05 18:43:30 +00:00
Anthony Baxter
8e7b490890
upgrade to final version of pysqlite 2.2.0
2006-04-05 18:25:33 +00:00
Martin v. Löwis
c48c8db110
Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve.
2006-04-05 18:21:17 +00:00
Thomas Heller
726dcf34a6
Use 'ldd' to find the libc library to load. Based on an idea from Matthias Klose.
2006-04-05 17:36:45 +00:00
Anthony Baxter
a2a26b9e1f
whitespace normalisation
2006-04-05 17:30:38 +00:00
Anthony Baxter
51bcb68b1d
blank spots for Misc/NEWS, post alpha1 (plus testing buildbot 0.7.2)
2006-04-05 14:51:42 +00:00
Andrew M. Kuchling
2cdb23ee5a
Bump version number after alpha1 release
2006-04-05 13:59:01 +00:00
Thomas Wouters
4bdaa271d6
Fix refleak in __import__("") (probably the cause of the 2 refleaks in
...
test_builtin.)
2006-04-05 13:39:37 +00:00
Anthony Baxter
22495c02e2
no-one but windows should expect startfile to work
2006-04-05 13:24:26 +00:00
Anthony Baxter
c60611da82
Tagging for release of Python 2.5a1
2006-04-05 02:35:33 +00:00
Neal Norwitz
9ad18bbb52
we need os.path too for the normal run on windows
2006-04-04 19:29:29 +00:00
Andrew M. Kuchling
d96a6ac544
Reference PEP 356
2006-04-04 19:17:34 +00:00
Andrew M. Kuchling
c3749a9791
Add a paragraph about PEP 353; add a few more fixes
2006-04-04 19:14:41 +00:00
Tim Peters
ed2038b599
The part checking for the sqlite DLL was looking at, and
...
copying to, a wrong location (it copied the DLL under the
Python directory, and gave it name 'PCbuild').
The Windows buildbots other than mine are probably hung
now, waiting for someone to press "OK" on a popup box
informing them that sqlite3.dll couldn't be found.
2006-04-04 19:12:51 +00:00
Andrew M. Kuchling
9c67ee08d8
Tidy up the document in preparation for 2.5alpha1. Hope I didn't break the markup...
2006-04-04 19:07:27 +00:00
Thomas Heller
b882f47383
Change the import statement so that the test is skipped when
...
os.startfile is not present.
2006-04-04 18:52:27 +00:00
Thomas Heller
3bd3315e49
Per Martins request, add empty.vbs to Tools\msi\msi.py.
...
This file is used by test_startfile.py.
2006-04-04 18:41:13 +00:00
Thomas Heller
19fd857906
Add a simple test for os.startfile().
2006-04-04 18:31:35 +00:00
Walter Dörwald
f7bc5f9455
Change the example classes UnicodeReader and UnicodeWriter so
...
that they work with all encodings. For UnicodeReader the real
input stream is wrapped in a line iterator that reencodes the
input to UTF-8. For UnicodeWriter the UTF-8 encoded output is
written to a queue for where it is reencoded to the target
encoding and written to the real output stream.
2006-04-04 17:32:49 +00:00
Thomas Wouters
f4d8f39053
Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always at
...
least as big as a long. I believe this to be a safe assumption that is being
made in many parts of CPython, but a check could be added.
len(xrange(sys.maxint)) works now, so fix the testsuite's odd exception for
64-bit platforms too. It also fixes 'zip(xrange(sys.maxint), it)' as a
portable-ish (if expensive) alternative to enumerate(it); since zip() now
calls len(), this was breaking on (real) 64-bit platforms. No additional
test was added for that behaviour.
2006-04-04 17:28:12 +00:00
Fredrik Lundh
4aaaa49bac
docstring tweak
2006-04-04 16:51:13 +00:00
Martin v. Löwis
e510bd16ea
Adjust sqlite3 build process to Win64.
2006-04-04 16:28:14 +00:00
Thomas Wouters
8ddab27182
Fix __import__("") to raise ValueError rather than return None.
2006-04-04 16:17:02 +00:00
Anthony Baxter
06853fc150
Fix test_platform on cygwin. When running from build area, sys.executable
...
is 'python'. But 'python' is actually a directory, 'python.exe' is the
executable.
2006-04-04 15:52:00 +00:00
Tim Peters
b2fc21e9f8
sqlite on Windows:
...
- The buildbot "fetch it" step failed at the end, due to
using Unix syntax in the final "copy the DLL" step.
test_sqlite was skipped as a result.
- test_sqlite is no longer an expected skip on Windows.
2006-04-04 15:21:02 +00:00
Anthony Baxter
3b8ff31055
SF Bug #1448488 - make collectionsmodule build on Cygwin, using the same
...
techniques as in Modules/xxsubtype.c
2006-04-04 15:05:23 +00:00
Anthony Baxter
cbb9f97299
update to correct version of pysqlite
2006-04-04 14:40:45 +00:00
Jeremy Hylton
ed40ea1159
Generate line number table entries for except handlers.
...
Re-enable all the tests in test_trace.py except one. Still not sure that these tests test what they used to test, but they pass. One failing test seems to be caused by undocumented line number table behavior in Python 2.4.
2006-04-04 14:26:39 +00:00
Anthony Baxter
768018592c
cygwin's curses support isn't up to scratch to run the tests.
2006-04-04 13:32:08 +00:00
Jeremy Hylton
1b6cab6531
Remove debugging prints.
2006-04-04 12:48:33 +00:00
Anthony Baxter
36458ee501
aargh. Don't make last minute re-organisations before checkin!
2006-04-04 12:40:38 +00:00
Martin v. Löwis
cecb885d62
Fix Debug, Itanium, AMD64 configurations
2006-04-04 12:34:06 +00:00
Anthony Baxter
46854bc7e4
PyAPI_FUNC() the PyArg_.*SizeT forms. Without this, cygwin has hysterics.
...
(see buildbot)
2006-04-04 12:27:20 +00:00
Jeremy Hylton
76c21bdb46
Make path calculation platform independent
2006-04-04 12:11:12 +00:00
Neal Norwitz
c410d6ce28
Fix a couple of memory issues
2006-04-04 07:25:25 +00:00