summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* SF bug #1400822, Extended version of _curses over{lay,write} does not workNeal Norwitz2006-01-104-4/+15
| | | | | | Fix signatures to conform to doc (also fixed ungetmouse()). Will backport.
* - Patch #1400181, fix unicode string formatting to not use the locale.Neal Norwitz2006-01-102-16/+25
| | | | | | | | | | | | | | | | This is how string objects work. u'%f' could use , instead of . for the decimal point. Now both strings and unicode always use periods. This is the code that would break: import locale locale.setlocale(locale.LC_NUMERIC, 'de_DE') u'%.1f' % 1.0 assert '1.0' == u'%.1f' % 1.0 I couldn't create a test case which fails, but this fixes the problem. Will backport.
* added a couple of missing periods.Fredrik Lundh2006-01-091-4/+4
|
* Correct test_builtin locale handling.Georg Brandl2006-01-091-1/+1
|
* fixed broken sentenceFredrik Lundh2006-01-091-3/+3
|
* typoFredrik Lundh2006-01-091-1/+1
|
* Fix typos.Walter Dörwald2006-01-091-3/+3
|
* Add some notes about a recurring problem with OpenBSDNeal Norwitz2006-01-091-0/+38
|
* Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8.Neal Norwitz2006-01-093-5/+8
| | | | | | configure would break checking curses.h. Will backport.
* Bug #1400115, Fix segfault when calling curses.panel.userptr()Neal Norwitz2006-01-093-0/+19
| | | | | | without prior setting of the userptr. Will backport.
* Add myself.Georg Brandl2006-01-081-0/+1
|
* Add a test file (which isn't run by regrtest) for bugs whichGeorg Brandl2006-01-081-0/+24
| | | | | | aren't fixed yet. Includes a first test (for compiler).
* Patch #1299675: Pass metadata in upload.Martin v. Löwis2006-01-081-9/+33
|
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-084-1/+212
|
* Patch #881820: look for openpty and forkpty also in libbsd.Martin v. Löwis2006-01-083-3/+163
| | | | Will backport.
* Remove some shadowed variablesNeal Norwitz2006-01-083-4/+4
|
* strlen() returns a size_t, get rid of 64-bit warningNeal Norwitz2006-01-081-1/+1
|
* Repair bizarre indentation created by VC 7.1.Tim Peters2006-01-081-1/+1
|
* alias_for_import_name(): Dueling compiler warnings ;-)Tim Peters2006-01-081-1/+2
| | | | | | | Squash new warnings from VC 7.1 about mixing signed and unsigned types in comparisons. I can see why `len` was changed to size_t here, but don't see why `i` was also changed. Change `i` back to int.
* analyze_cells(): This no longer compiled under VC 7.1.Tim Peters2006-01-081-1/+2
| | | | Move declaration of local `flags` to top of block.
* Revert previous checkin, the check is for <, not ==. i is unsed in ↵Neal Norwitz2006-01-081-2/+5
| | | | non-debug builds, but is used in debug builds
* ignore db_home (result of db tests)Neal Norwitz2006-01-080-0/+0
|
* ignore db_home (result of db tests) and autom4te.cache from autoconfNeal Norwitz2006-01-080-0/+0
|
* Fix icc warnings: remove (sometimes) unused variable conditionallyNeal Norwitz2006-01-081-2/+4
|
* Fix icc warnings: remove unused variableNeal Norwitz2006-01-081-2/+1
|
* Fix icc warnings. This couldn't have been correct since i is checkedNeal Norwitz2006-01-081-5/+2
| | | | | for 2 different values without changing. I think this was the intent. The unused warning only occurs when not building in debug mode.
* Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == ↵Neal Norwitz2006-01-081-0/+11
| | | | TCL_UNIX_FD. res is not used, add a XXX comment
* Fix icc warnings: HASH_OBJ_CONSTRUCTOR was not defined and using #if ↵Neal Norwitz2006-01-081-0/+4
| | | | HASH_OBJ_CONSTRUCTOR
* Fix icc warnings: conversion from "long" to "int" may lose significant bitsNeal Norwitz2006-01-082-15/+15
|
* Fix icc warnings: strlen() returns size_tNeal Norwitz2006-01-082-7/+7
|
* Revert revision 41940: the test causes -uall toTim Peters2006-01-071-4/+1
| | | | fail everywhere.
* icc accepts -OPT... but generates a warning, so just disable the checkNeal Norwitz2006-01-072-1/+13
|
* Fix icc warnings: single bit fields should be unsignedNeal Norwitz2006-01-071-7/+7
|
* Fix icc warnings: shadowing local variable (i) and complex is set but not ↵Neal Norwitz2006-01-071-3/+2
| | | | used, so remove
* Fix icc warnings: single bit fields should be unsigned, shadowing local ↵Neal Norwitz2006-01-071-16/+16
| | | | variables
* Fix icc warnings: shadowing local variablesNeal Norwitz2006-01-071-2/+1
|
* Fix icc warnings: using wrong enum typeNeal Norwitz2006-01-071-2/+2
|
* Fix icc warnings: extra semi-colon and signed vs unsignedNeal Norwitz2006-01-071-8/+8
|
* Fix icc warnings: extra semi-colonNeal Norwitz2006-01-072-3/+3
|
* If there is no libtermcap all the readline tests failed.Neal Norwitz2006-01-073-7/+173
| | | | | | | | | This inappropriately disabled some capabilities which exist. Now test for readline in -lreadline, if not found there, try it in -ltermcap only if not in -lreadline. If both libraries are required, there will need to be more work, but I'm not sure under what conditions both libraries would be required.
* Add compiler test regarding optional arguments.Georg Brandl2006-01-061-1/+4
|
* Correct typoGeorg Brandl2006-01-061-1/+1
|
* initscr() will exit if there's an error. Try to catch the obvious failureNeal Norwitz2006-01-061-4/+7
| | | | | | | | | | | | | cases if TERM isn't set or is unknown (perhaps we should only check if unset or empty?) Skip the test if TERM isn't set. This seems to occur when running under buildbot and presumably cron. For some more info check here: http://mail.python.org/pipermail/python-checkins/2006-January/048704.html Will backport if it works.
* Py_GetBuildInfo(): Squash compiler warnings.Tim Peters2006-01-061-3/+3
| | | | Locals `revision` and `branch` were const-incorrect.
* svnversion_init(): Use standard layout for function defn.Tim Peters2006-01-061-1/+2
|
* Trimmed trailing whitespace.Tim Peters2006-01-061-20/+20
|
* Generalize buildno to be a sequence of non-commaMartin v. Löwis2006-01-061-1/+1
| | | | characters.
* Deal with empty svn_revisions.Martin v. Löwis2006-01-061-1/+1
|
* Add HeadURL to the keywords.Martin v. Löwis2006-01-050-0/+0
|
* Drop sys.build_number. Add sys.subversion.Martin v. Löwis2006-01-055-25/+114
|