summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Drop sys.build_number. Add sys.subversion.Martin v. Löwis2006-01-055-25/+114
|
* squash compiler warning on Mac OSX 10.3Skip Montanaro2006-01-051-0/+4
|
* Always set SVNVERSION to "exported" if it otherwise fails.Martin v. Löwis2006-01-054-17/+25
|
* Stop maintaining the buildno file.Martin v. Löwis2006-01-055-37/+88
| | | | Also, stop determining Unicode sizes with PyString_GET_SIZE.
* If the audio file does not exist, the test should be skipped. Will backport.Neal Norwitz2006-01-052-2/+2
|
* Try to make svnversion test more portable, based on Sjoerd's suggestionNeal Norwitz2006-01-051-1/+1
|
* Skip test_curses if stdin is not a tty (like when run from cron or ↵Neal Norwitz2006-01-051-1/+3
| | | | buildbot). Will backport.
* Fix errors on 64-bit platforms. Will backportNeal Norwitz2006-01-052-4/+6
|
* Bug #1395715: wrong LaTeX labelGeorg Brandl2006-01-041-1/+1
|
* Fix a warning from gcc by adding a missed const qualifier.Hye-Shik Chang2006-01-041-1/+1
|
* SF bug #1395926: Also test for svnversion command on $PATH before using it toBarry Warsaw2006-01-031-1/+1
| | | | calculate the build number.
* Mention that zlib is now builtin on Windows.Martin v. Löwis2006-01-031-0/+3
|
* Patch #1307806: Use project defaults where possibleMartin v. Löwis2006-01-0314-1048/+71
|
* Make zlib builtin.Martin v. Löwis2006-01-036-281/+66
|
* Remove unneeded directories.Martin v. Löwis2006-01-03167-39686/+0
|
* Import zlib into Python tree.Martin v. Löwis2006-01-03202-0/+54653
|
* Ignore .svn instead of CVS now.Martin v. Löwis2006-01-031-3/+3
|
* On the Mac, we have to ignore python.exe too.Barry Warsaw2006-01-030-0/+0
|
* Dammit, who the hell spells build with ii?Neal Norwitz2006-01-031-1/+1
| | | | Thanks to Tony Meyer for spotting my boo-boo.
* Updated doc from patch 1117398Neal Norwitz2006-01-031-5/+10
|
* As discussed on python-dev, don't remove Python-ast.[ch] with distcleanNeal Norwitz2006-01-031-1/+1
| | | | | even though they are generated. Since these files require Python 2.2+, it's possible they can't be created on a fresh system.
* install svn in /usr/local/bin and remove from ~/local/binNeal Norwitz2006-01-031-3/+1
|
* get the proper full pathname of the script. spell build properlyNeal Norwitz2006-01-021-3/+3
|
* * Change tabs to spacesNeal Norwitz2006-01-021-8/+8
| | | | | * Enable network tests when hunting for leaks * Disable curses and audio tests properly when running -u all
* Bug #1395597: doc typoGeorg Brandl2006-01-021-2/+2
|
* Regenerate.Martin v. Löwis2006-01-021-45/+45
|
* Adjust usage of compiler_use_new_block to its return type.Martin v. Löwis2006-01-021-2/+2
|
* Script to automatically build and test python and doc. The resultsNeal Norwitz2006-01-021-0/+192
| | | | | | are copied up to docs.python.org/dev Needs lots more work. Feel free to add code, fixes, or FIXME comments.
* update to reflect move to SubversionFred Drake2006-01-023-272/+8
|
* Fix ref/memory leak introduced in rev 41845.Neal Norwitz2006-01-021-0/+2
|
* Ported from 2.4 branch:Barry Warsaw2006-01-012-4/+7
| | | | Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.
* Bug #1394868: doc typosGeorg Brandl2006-01-013-5/+5
|
* Fixed English in a comment; trimmed trailing whitespace;Tim Peters2006-01-011-11/+11
| | | | no code changes.
* test_main(): Restore the original root logger level after runningTim Peters2005-12-301-0/+9
| | | | | | | | | | the tests. This stops the confusing/annoying: No handlers could be found for logger "cookielib" message we got whenever some test running after test_logging happened to use cookielib.py (when not using regrtest's -r, this happened during test_urllib2; when using -r, it varied).
* Whitespace normalization.Tim Peters2005-12-302-2/+2
|
* Work around test_locale failing on Solaris.Martin v. Löwis2005-12-301-3/+8
| | | | Will backport to 2.4.
* Use -xcode=pic32 for SunPro. Will backport to 2.4.Martin v. Löwis2005-12-303-1/+5
|
* Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" wasSkip Montanaro2005-12-302-3/+17
| | | | | | | | returning 'a' as the delimiter. It now returns '|', but not because I understood better what the code was supposed to do. Would someone that understands the idea behind _guess_delimiter() (see its doc string) look to see if my fallback choice is better than before or if it's just serendipity that I picked the proper delimiter?
* typo, use parens for continued exprSkip Montanaro2005-12-301-3/+3
|
* SF#1391872Fredrik Lundh2005-12-292-2/+14
| | | | | Floating point literals don't work in non-US locale in 2.5. Patch and new locale tests by Hye-Shik Chang.
* SF patch #1379023: document that a weakref callback is not invoked if theArmin Rigo2005-12-291-2/+2
| | | | weakref object itself is deleted first.
* SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro".Armin Rigo2005-12-292-0/+64
| | | | | A patch by mwh to check that user-defined mro's are reasonable enough.
* adding in-place operators to the operator module.Armin Rigo2005-12-293-1/+190
|
* Typo.Armin Rigo2005-12-291-1/+1
|
* SF patch #1390657:Armin Rigo2005-12-294-22/+172
| | | | | | | | | | | | | | | | | * set sq_repeat and sq_concat to NULL for user-defined new-style classes, as a way to fix a number of related problems. See test_descr.notimplemented()). One of these problems was fixed in r25556 and r25557 but many more existed; this is a general fix and thus reverts r25556-r25557. * to avoid having PySequence_Repeat()/PySequence_Concat() failing on user-defined classes, they now fall back to nb_add/nb_mul if sq_concat/sq_repeat are not defined and the arguments appear to be sequences. * added tests. Backport candidate.
* two missing PyDoc_STR().Armin Rigo2005-12-291-2/+2
|
* typoSkip Montanaro2005-12-281-1/+1
|
* Fix for problem with Sniffer class. If your delimiter is whitespace and theSkip Montanaro2005-12-282-2/+5
| | | | | | last field was empty it would strip the delimiter and incorrectly guess that "" was the delimiter. Reported in c.l.py by Laurent Laporte. Will backport.
* Bug #999767: make setup.py obey Setup.local wrt shared modulesGeorg Brandl2005-12-271-10/+11
|
* [ 959576 ] Can't build Python on POSIX w/o $HOMEGeorg Brandl2005-12-272-1/+5
|