Martin v. Löwis
14c1cf88ad
Update to bzip2 1.0.3
...
Make buildbot slaves automatically fetch bzip2 1.0.3.
2006-03-13 10:52:04 +00:00
Thomas Heller
a022789ab3
Plug some refcount leaks when tests are run repeatedly.
2006-03-13 10:47:02 +00:00
Hye-Shik Chang
abb903fd54
Bug #1448490 : Fix a bug that ISO-2022 codecs could not handle
...
SS2 (single-shift 2) escape sequences correctly.
2006-03-13 10:20:08 +00:00
Thomas Heller
6058aa40d2
Remove the slightly broken test_leaks.py.
...
Change test_functions.py so that it can be run multiple time without
failing: Assign a restype to the function in test_intresult, and move
the definition of class POINT to module level so that no new class is
created each time the test is run.
2006-03-13 07:33:38 +00:00
Trent Mick
b1386772b5
Adding the /useenv means that one's PATH actually gets through. This is
...
important for the _ssl.vproj build. It calls build_ssl.py which tries to
find a Perl to use. Without "/useenv" Visual Studio is getting a PATH
from somewhere else (presumably from its internal environment
configuration). The result is that build_ssl.py fallsback to its
"well-known" locations for a Perl install.
2006-03-12 23:40:58 +00:00
Fredrik Lundh
44ed4db955
merged with cElementTree development trunk (1.0.6 snapshot):
...
Fixed a number of potential null-pointer-reference-under-pressure
glitches, based on input from the Coverity analysis tool and Simo
Salminen.
2006-03-12 21:06:35 +00:00
Martin v. Löwis
d39ab5bf97
Move buildbot scripts to Tools/buildbot.
2006-03-12 09:50:39 +00:00
Tim Peters
539056aca0
Added brief comment.
2006-03-12 07:00:54 +00:00
Tim Peters
1777ada247
Added brief comments.
2006-03-12 06:47:36 +00:00
Thomas Wouters
a96affe1fc
- Reindent a confusingly indented piece of code (no intended code changes
...
there)
- Add missing DECREFs of inner-scope 'temp' variable
- Add various missing DECREFs by changing 'return NULL' into 'goto onError'
- Avoid double DECREF when last _PyUnicode_Resize() fails
Coverity found one of the missing DECREFs, but oddly enough not the others.
2006-03-12 00:29:36 +00:00
Thomas Wouters
318af47512
Plug the last 657 referenceleaks in test_bsddb3: a circular reference
...
between a TestCase instance, the database it opened (or a cursor to a
database) and a bound method as a registered database callback, and a lack
of GC-handling in bsddb caused the TestCases to linger. Fix the test, for
now, as backward compatibility makes adding GC to bsddb annoying.
2006-03-12 00:13:09 +00:00
Thomas Wouters
b2820ae355
Fix another leak in bsddb, and avoid use of uninitialized value -- funny how
...
gcc 4.0.x wasn't complaining about *that* one ;)
2006-03-12 00:01:38 +00:00
Martin v. Löwis
9fe582ceec
Add buildbot test script.
2006-03-11 23:56:39 +00:00
Tim Peters
3f2723d44f
Give the _ssl project a harmless command to perform
...
for its "clean" action. Else the clean step run by
the buildbot reports failure, due to the _ssl project
whining about not being able to spawn an empty string.
2006-03-11 23:05:39 +00:00
Martin v. Löwis
43179c8e6f
Add changelog entry.
2006-03-11 12:43:44 +00:00
Martin v. Löwis
c350912990
Adjust CJK Ideograph range to Unicode 4.1.
2006-03-11 12:16:23 +00:00
Tim Peters
88ca467ca4
Whitespace normalization.
2006-03-10 23:39:56 +00:00
Tim Peters
922dd7d49d
When the new -w option (yay! great idea) reruns a
...
failed test, first display the name of the test (else
it's not always clear from the output which test is
getting run).
2006-03-10 23:37:10 +00:00
Martin v. Löwis
04824ce8ed
Add regrtest -w option.
2006-03-10 21:26:16 +00:00
Andrew M. Kuchling
f688cc574c
Unicode database updated; use SVN instead of CVS
2006-03-10 18:50:08 +00:00
Martin v. Löwis
1a4a6406fd
Add AMD64 and Itanium configurationgs to ctypes;
...
disable them in the solution since ctypes doesn't
support these processors on Windows.
2006-03-10 16:02:59 +00:00
Martin v. Löwis
a09655ec5d
Add ctypes.
2006-03-10 15:36:28 +00:00
Martin v. Löwis
4196296605
Update test data to 4.1; disable PRI #29 for now.
2006-03-10 11:59:47 +00:00
Martin v. Löwis
0e2f9b2dfb
Fix refcounting bug.
2006-03-10 11:29:32 +00:00
Martin v. Löwis
5bd7c02298
Avoid forward-declaring the methods array.
...
Rename unicodedata.db* to unicodedata.ucd*
2006-03-10 11:20:04 +00:00
Guido van Rossum
f669436189
Um, I thought I'd already checked this in.
...
Anyway, this is the changes to the with-statement
so that __exit__ must return a true value in order
for a pending exception to be ignored.
The PEP (343) is already updated.
2006-03-10 02:28:35 +00:00
Guido van Rossum
692cdbc5d6
Fix three nits found by Coverity, adding null checks and comments.
2006-03-10 02:04:28 +00:00
Martin v. Löwis
480f1bb67b
Update Unicode database to Unicode 4.1.
2006-03-09 23:38:20 +00:00
Georg Brandl
e2b4677253
Move entry to correct section.
2006-03-09 23:22:43 +00:00
Georg Brandl
24cb053b15
Patch #1446372 : quit and exit can now be called from the interactive
...
interpreter to exit.
2006-03-09 23:22:06 +00:00
Tim Peters
ca4d08b6d3
NodeInfo.__gen_init(): Fiddle so that reindent.py is
...
happy with the output as-is. This incidentally also
gets rid of "an extra" blank line at the end of the output
block that probably wasn't intended (although it doesn't
matter one way or the other).
2006-03-09 22:31:45 +00:00
Thomas Heller
51f77b5152
Remove the magic to run an uninstalled ctypes version from a CVS sandbox.
2006-03-09 19:40:00 +00:00
Andrew M. Kuchling
aeadf95449
Write a section
2006-03-09 19:06:05 +00:00
Thomas Heller
3b9e9ae8a5
Deleted the svn_mime-type application/octet-stream from PCBuild/pcbuild.sln.
...
Tools/scripts/svneol.py: added the .sln and .vcproj extensions because these are text files.
Ran svneol.py over the source tree.
2006-03-09 18:49:35 +00:00
Thomas Heller
a16bb0c156
Added VC project files to build _ctypes.pyd and _ctypes_test.pyd on Windows.
...
Settings for 64-bit Windows are missing.
I've left in the 64-bit warnings to remind me to port ctypes to Py_ssize_t.
2006-03-09 17:35:20 +00:00
Andrew M. Kuchling
d0fcc0256b
Markup fix
2006-03-09 13:57:28 +00:00
Andrew M. Kuchling
e362d93367
Write a section
2006-03-09 13:56:25 +00:00
Georg Brandl
d09def36d5
Bug #1442874 : handle "<!>", the empty SGML comment
2006-03-09 13:27:14 +00:00
Georg Brandl
8f4b4db676
typo
2006-03-09 10:16:42 +00:00
Thomas Heller
57e881eb22
Disable the testcase that crashes solaris.
2006-03-09 09:43:53 +00:00
Thomas Heller
e317d0e307
Replace the trivial ctypes test (did only an import) with the real test suite.
2006-03-09 07:21:33 +00:00
Neal Norwitz
72c2c062d7
Try to be a bit more consistent on all platforms:
...
python .
python < .
both print a message, return non-zero and do not core dump.
2006-03-09 05:58:11 +00:00
Martin v. Löwis
8ff212034e
Directly read working copy data to obtain list of properties.
2006-03-09 02:20:05 +00:00
Tim Peters
84457af29e
Taught svneol to look at .c and .h files too, and
...
it found a bunch more in need of svn:eol-style.
2006-03-09 01:59:27 +00:00
Tim Peters
d87f81f5f3
Simple utility to add svn:eol-style to text files under
...
SVN control. Like reindent.py, I expect to run this
mindlessly from time to time, checking in whatever it
happens to do ;-)
2006-03-09 01:42:24 +00:00
Martin v. Löwis
685e954935
Set auto-props
2006-03-09 01:35:32 +00:00
Tim Peters
e8d09e5818
Whitespace normalization.
2006-03-09 01:15:05 +00:00
Tim Peters
b31c8142d5
These text files were all missing the svn:eol-style property.
2006-03-09 01:07:25 +00:00
Hye-Shik Chang
d758d3d747
Remove .cvsignore and set svn:ignore for *.pyc *.pyo.
2006-03-08 23:31:17 +00:00
Georg Brandl
ddb73febef
Bug #1445901 : os.path.realpath() is available on Win/Mac too.
2006-03-08 20:59:09 +00:00