Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't look for modules in the registry any longer. | Thomas Heller | 2002-11-26 | 1 | -38/+0 |
| | | | | | | | | | | Mark writes in private email: "Modules listed in the registry was a dumb idea. This whole scheme can die. AFAIK, no one in the world uses it (including win32all since the last build)." (See also SF #643711) | ||||
* | added support for building standalone applications | Just van Rossum | 2002-11-26 | 1 | -14/+259 |
| | | | | | - requires modulefinder.py to be on sys.path - does *not* work for Python.framework (yet), only for static builds | ||||
* | A tweaked version of Jeremy's patch #642489, to produce better error | Guido van Rossum | 2002-11-25 | 1 | -0/+31 |
| | | | | | messages about MRO conflicts. (Tweaks here: don't print the message, but compare it with an expected string.) | ||||
* | A tweaked version of Jeremy's patch #642489, to produce better error | Guido van Rossum | 2002-11-25 | 1 | -4/+138 |
| | | | | | | messages about MRO conflicts. (The tweaks include correcting spelling errors, some refactoring to get the name of classic classes, and a style nit or two.) | ||||
* | Added Marius Gedminas, for contributions to the datetime code. | Tim Peters | 2002-11-25 | 1 | -0/+1 |
| | |||||
* | SF 643115: Set._update() had a special case for dictionaries which allowed | Raymond Hettinger | 2002-11-25 | 2 | -3/+3 |
| | | | | | non-true values to leak in. This threw-off equality testing which depends on the underlying dictionaries having both the same keys and values. | ||||
* | Add a note that this file should be kept compatible with Python 1.5.2, | Thomas Heller | 2002-11-25 | 1 | -2/+10 |
| | | | | | | | per PEP 291 (although there are currently string methods used). This patch makes it compatible with 2.2, at least, by detecting universal newline support. | ||||
* | * libbz2.tex | Gustavo Niemeyer | 2002-11-25 | 1 | -1/+1 |
| | | | | Fixed minor typo, suggested by Drew Perttula <drewp@bigasterisk.com>. | ||||
* | Fix typo in comment. | Walter Dörwald | 2002-11-25 | 1 | -1/+1 |
| | |||||
* | Fixed bug | Gustavo Niemeyer | 2002-11-25 | 2 | -2/+13 |
| | | | | | | | | | | | [#495695] webbrowser.py: selection of browser * Lib/webbrowser.py Only include graphic browsers in _tryorder if DISPLAY is set. Also, included skipstone support, as suggested by Fred in the mentioned bug. * Misc/NEWS Mention fix and skipstone inclusion. | ||||
* | Added a class PEP252Mixin. By adding this to your ObjectDefinition you | Jack Jansen | 2002-11-25 | 1 | -2/+127 |
| | | | | | | | | | | | get PEP-252 style objects in stead of old-fashioned objects. In stead of defining a GetattrHook you declare a class variable getsetlist, which contains tuples (name, getcode, setcode, docstring). Only lightly tested: the code still works if you don't inherit PEP252Mixin and the code works if you inherit it but don't define any getters or setters. Also, this will not work together with the "poor mans inheritance" offered by method chains, so the CF module will remain with old-style objects until PEP253 is supported too. | ||||
* | Remove \module{} in link text to avoid HTML generation bug | Andrew M. Kuchling | 2002-11-25 | 1 | -3/+2 |
| | |||||
* | Remove extra word | Andrew M. Kuchling | 2002-11-25 | 1 | -1/+1 |
| | |||||
* | James Henstridge pointed out a misleading comment. | Michael W. Hudson | 2002-11-25 | 1 | -10/+6 |
| | |||||
* | Mention that .pth files can't be used to override standard modules | Andrew M. Kuchling | 2002-11-25 | 1 | -4/+8 |
| | | | | (suggested by Jack Jansen) | ||||
* | Lots of restructuring, mostly suggested by Bill Bumgarner. Main | Jack Jansen | 2002-11-25 | 6 | -57/+242 |
| | | | | | | externally visible difference is that the factory defaults are now in a plist file in the bundle, in stead of being hard-coded in the application. | ||||
* | Add unidata_version. Bump generator version number. | Martin v. Löwis | 2002-11-25 | 6 | -5/+19 |
| | |||||
* | Don't disable building Mac-specific modules for a non-framework build: | Just van Rossum | 2002-11-24 | 1 | -99/+89 |
| | | | | | | whether they crash or not is not a matter of using a framework or not, but whether the code is run from an app bundle or not. And that it _can_ crash (instead of tracing back) is Apple's bug anyway, not ours. | ||||
* | Regenerate from Unicode 3.2.0 to include all First/Last ranges. | Martin v. Löwis | 2002-11-24 | 4 | -8512/+8473 |
| | |||||
* | 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 |
| |