Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sort names independent of the Python version. Fix hex constant warning. | Martin v. Löwis | 2002-11-24 | 1 | -7/+11 |
| | | | | Include all First/Last blocks. | ||||
* | Repaired inaccuracies in the % docs. In particular, we don't (and can't) | Tim Peters | 2002-11-24 | 1 | -3/+14 |
| | | | | | | | guarantee abs(x%y) < abs(y) in all cases when a float is involved. math.fmod() should, though, so noted that too. Bugfix candidate. Someone should check the LaTeX here first, though. | ||||
* | Reduced memory burden by iterating over the normalization test input | Tim Peters | 2002-11-24 | 2 | -4/+2 |
| | | | | file directly (instead of sucking it all into a list of lines first). | ||||
* | Fiddled things so that test_normalization is expected to be skipped if | Tim Peters | 2002-11-24 | 2 | -39/+60 |
| | | | | and only if the test input file doesn't exist. | ||||
* | Delete bsddb from sys.modules if _bsddb cannot be imported. | Martin v. Löwis | 2002-11-24 | 1 | -1/+8 |
| | |||||
* | Skip test_normalization on Windows until it's at least clear why the | Tim Peters | 2002-11-24 | 1 | -0/+1 |
| | | | | | data it needs doesn't exist in the project. If it's a huge file, maybe the test should be changed to be one of the -u thingies. | ||||
* | Split long line. | Tim Peters | 2002-11-24 | 1 | -2/+3 |
| | | | | | XXX If NormalizationTest.txt is required to run this test, why isn't it checked into the project? | ||||
* | Whitespace normalization. | Tim Peters | 2002-11-24 | 20 | -36/+13 |
| | |||||
* | Simplify use of NB_BINOP and NB_TERNOP by making them do the pointer | Neil Schemenauer | 2002-11-24 | 1 | -15/+15 |
| | | | | dereference rather than the caller. | ||||
* | get creator code from plist if available, instead of overriding with default | Just van Rossum | 2002-11-24 | 1 | -1/+6 |
| | |||||
* | whoops, -p actually has an argument | Just van Rossum | 2002-11-24 | 1 | -1/+1 |
| | |||||
* | Remove special handling of str and unicode in PyNumber_InPlaceRemainder. They | Neil Schemenauer | 2002-11-24 | 1 | -9/+2 |
| | | | | both have a nb_remainer slot. | ||||
* | hardcode some resources, removing annoying Widgets.rsrc dependency | Just van Rossum | 2002-11-24 | 2 | -15/+100 |
| | |||||
* | cleaned up __init__ argument mess with a funky base class | Just van Rossum | 2002-11-23 | 1 | -74/+81 |
| | |||||
* | Verify that the code in CJK UNIFIED IDEOGRAPH- actually denotes an ideograph. | Martin v. Löwis | 2002-11-23 | 1 | -3/+12 |
| | |||||
* | Patch #626485: Support Unicode normalization. | Martin v. Löwis | 2002-11-23 | 6 | -23/+1053 |
| | |||||
* | Update character names. | Martin v. Löwis | 2002-11-23 | 1 | -3/+3 |
| | |||||
* | Try linking the static Sleepycat lib into _bsddb.pyd. Hard to say | Tim Peters | 2002-11-23 | 5 | -26/+24 |
| | | | | | | | | | | | | whether this is a correct thing to do: + There are linker warnings (see PCbuild\readme.txt). + test_bsddb passes, in both release and debug builds now. + test_bsddb3 has several failures, but it did before too. Also made pythoncore a dependency of the _bsddb project, updated build instructions, added database conversion XXX to NEWS, and fiddled the Windows installer accordingly. | ||||
* | Implement names for CJK unified ideographs. Add name to KeyError output. | Martin v. Löwis | 2002-11-23 | 4 | -8/+59 |
| | | | | Verify that the lookup for an existing name succeeds. | ||||
* | Add test cases for Hangul syllables. Update output. | Martin v. Löwis | 2002-11-23 | 2 | -1/+26 |
| | |||||
* | Fix off-by-one error. | Martin v. Löwis | 2002-11-23 | 1 | -1/+1 |
| | |||||
* | Remove duplicate test | Neal Norwitz | 2002-11-23 | 1 | -2/+0 |
| | |||||
* | Touch up the news for dict() keyword args. | Guido van Rossum | 2002-11-23 | 1 | -3/+4 |
| | |||||
* | Added change note about returning a dictionary based on keyword | Fred Drake | 2002-11-23 | 1 | -0/+2 |
| | | | | arguments. | ||||
* | Patch #626548: Support Hangul syllable names. | Martin v. Löwis | 2002-11-23 | 2 | -2/+112 |
| | |||||
* | Regenerate. Fixes #618012. | Martin v. Löwis | 2002-11-23 | 1 | -15/+28 |
| | |||||
* | Expand negative hexadecimal constants. | Martin v. Löwis | 2002-11-23 | 1 | -9/+25 |
| | |||||
* | Merge with bsddb3 2002.11.23.10.42.36 | Martin v. Löwis | 2002-11-23 | 6 | -47/+100 |
| | |||||
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 4 | -30/+46 |
| | | | | | | | dict() constructor. Example: >>> dict(a=1, b=2) {'a': 1, 'b': 2} >>> | ||||
* | Include Python.h first. | Martin v. Löwis | 2002-11-23 | 1 | -1/+1 |
| | |||||
* | Remove MALLOC_ZERO_RETURNS_NULL. | Martin v. Löwis | 2002-11-23 | 6 | -110/+5 |
| | |||||
* | More bsddb-on-Windows fiddling: | Tim Peters | 2002-11-23 | 3 | -6/+36 |
| | | | | | | | | + News blurb, but as much XXX as news. + Updated installer (install the new bsddb package, and the Berkeley DLL; still don't know how to fold that into _bsddb.pyd). + Fleshed out build instructions. + Debug Python still blows up. | ||||
* | Allow access to the returned value(s) as FSRefs. Unfortunately for some | Jack Jansen | 2002-11-22 | 1 | -2/+38 |
| | | | | | reason getting at saveFileName doesn't work, so it currently only really works for opening files for reading. | ||||
* | Fix SF # 640557, '64-bit' systems and the dbm module | Neal Norwitz | 2002-11-22 | 1 | -6/+17 |
| | | | | | | | datum.dsize can apparently be long on some systems. Ensure we pass an int* to PyArg_Parse("s#"), not &datum.dsize Will backport. | ||||
* | (This is hopefully the last large, funny checkin message for | Thomas Heller | 2002-11-22 | 2 | -400/+4 |
| | | | | | | | | | | bdist_wininst.py we will see.) Removed the base64 encoded binary contents, wininst.exe must be in the same directory as this file now. wininst.exe must be recompiled and commited each time the sources in PC/bdist_wininst are changed. | ||||
* | get_python_version was not imported. | Thomas Heller | 2002-11-22 | 1 | -0/+1 |
| | |||||
* | Oops, MSVC was still open, so the project file was not yet saved. | Thomas Heller | 2002-11-22 | 1 | -6/+7 |
| | |||||
* | Copied the sources from the distutils CVS repository. | Thomas Heller | 2002-11-22 | 10 | -0/+3125 |
| | | | | | | | | | | | | | | Changed the MSVC project file to create the exe in the lib/distutils/command directory, bdist_wininst.py must still be changed to use it. Also changed to use the same zlib as the zlib module - this has the nice sideeffect that now the buggy 1.1.3 version is no longer used. Most of the source files now conform to PEP 7, except for the maximum line length. Windows api programming in 78 character lines =:(. README.txt is a new file, but still empty except for placeholders. | ||||
* | Two bugs: | Fred Drake | 2002-11-22 | 1 | -7/+7 |
| | | | | | - assertRaises() wasn't being called correctly - test_warning() no longer applies | ||||
* | Move Windows Python away from bsddb 1.85 and toward Sleepycat's latest. | Tim Peters | 2002-11-22 | 5 | -133/+173 |
| | | | | | | | The bsddb subproject is gone. The _bsddb subproject is new. There are problems here, but I'm out of time to work on this now. If anyone can address an XXX comment or two in readme.txt, please do! | ||||
* | Fix for #641455: curses module doesn't build on MacOSX. It turns out the | Jack Jansen | 2002-11-22 | 1 | -0/+9 |
| | | | | | | | system headers have two declarations for wchar_t, with different guard macros. Not sure whether this is a bugfix candidate, that depends on what changed in the curses module. | ||||
* | Comment out the warnings about mktemp(). These are too annoying, and | Guido van Rossum | 2002-11-22 | 1 | -3/+3 |
| | | | | often unavoidable. | ||||
* | Added the alias manager too. The interface isn't perfect yet: the alias | Jack Jansen | 2002-11-22 | 6 | -0/+872 |
| | | | | | manager doesn't always have the alias as the first argument, so things become functions in stead of methods. | ||||
* | Got angry and added support for pretty much the whole file and folder | Jack Jansen | 2002-11-22 | 11 | -0/+2761 |
| | | | | | manager. This should allow us the get rid of most of the FSSpecs, only navigation services remains to be done. | ||||
* | Clarify the default setting for daemon_threads. | Fred Drake | 2002-11-22 | 1 | -1/+3 |
| | |||||
* | Fix markup. | Fred Drake | 2002-11-22 | 1 | -1/+1 |
| | |||||
* | Use False instead of 0. | Fred Drake | 2002-11-22 | 1 | -1/+1 |
| | |||||
* | workaround so the (otherwise still broken) IDE can at least quit in the ↵ | Just van Rossum | 2002-11-22 | 1 | -15/+14 |
| | | | | Python 2.2 Jaguar addon install | ||||
* | fix for SF #635398 (don't "downcast" return strings from unicode to ascii) | Fredrik Lundh | 2002-11-22 | 1 | -21/+4 |
| | |||||
* | changed to use Lib/bundlebuilder.py instead of scripts/buildappbundle.py | Just van Rossum | 2002-11-22 | 1 | -5/+8 |
| |