Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More cases of input parameters passed by reference without const. | Jack Jansen | 2004-01-11 | 3 | -15/+19 |
| | |||||
* | Added support for APIs in QuickTimeMusic.h. This one is a bit dodgy: | Jack Jansen | 2004-01-11 | 3 | -1/+1636 |
| | | | | | the header file seems to be hand-written and missing the "const" keywords for input parameters passed by reference. | ||||
* | The format of the string data used in the imageop module is described | Sjoerd Mullender | 2004-01-10 | 2 | -33/+120 |
| | | | | | | | | | | | | | | | | | | as "This is the same format as used by gl.lrectwrite() and the imgfile module." This implies a certain byte order in multi-byte pixel formats. However, the code was originally written on an SGI (big-endian) and *uses* the fact that bytes are stored in a particular order in ints. This means that the code uses and produces different byte order on little-endian systems. This fix adds a module-level flag "backward_compatible" (default not set, and if not set, behaves as if set to 1--i.e. backward compatible) that can be used on a little-endian system to use the same byte order as the SGI. Using this flag it is then possible to prepare SGI-compatible images on a little-endian system. This patch is the result of a (small) discussion on python-dev and was submitted to SourceForge as patch #874358. | ||||
* | Added support for APIs in MediaHandlers.h. | Jack Jansen | 2004-01-09 | 2 | -1/+1940 |
| | |||||
* | Update Windows build to use zlib 1.2.1 | Jeremy Hylton | 2004-01-09 | 2 | -9/+10 |
| | |||||
* | Fix some digicool addresses I noticed | Andrew M. Kuchling | 2004-01-08 | 4 | -5/+5 |
| | |||||
* | add link to the red-dove.com page about the logging package | Fred Drake | 2004-01-08 | 1 | -0/+7 |
| | |||||
* | add new reference macro: \seelink | Fred Drake | 2004-01-08 | 3 | -1/+33 |
| | |||||
* | SF bug #872461: list.extend() described as experimental | Raymond Hettinger | 2004-01-08 | 1 | -3/+1 |
| | |||||
* | __all__: Remove freenet_b64encode and freenet_b64decode. | Barry Warsaw | 2004-01-07 | 1 | -1/+0 |
| | |||||
* | Add the _bisectmodule.c source file to the pythoncore project - seems to ↵ | Thomas Heller | 2004-01-06 | 1 | -0/+3 |
| | | | | have been forgotten. | ||||
* | Update information about building bsddb, particularly re with and without | Mark Hammond | 2004-01-06 | 1 | -11/+18 |
| | | | | strong crypto. | ||||
* | SF Patch #864863: Bisect C implementation | Raymond Hettinger | 2004-01-05 | 9 | -16/+261 |
| | | | | (Contributed by Dmitry Vasiliev.) | ||||
* | Small correction to example | Raymond Hettinger | 2004-01-05 | 1 | -2/+3 |
| | |||||
* | * Add various updates reflecting the last two weeks of checkins: | Raymond Hettinger | 2004-01-05 | 1 | -3/+38 |
| | | | | | | timeit, base64, MSVC++ 7.1 build, METH_COEXISTS, and optimizations. * Put in a comment suggesting an improvement to the rsplit() example. | ||||
* | [SF #866875] Add a specialized routine for one character | Hye-Shik Chang | 2004-01-05 | 2 | -59/+150 |
| | | | | separaters on str.split() and str.rsplit(). | ||||
* | Allow passing NULL pointers by passing None. This also works for the | Jack Jansen | 2004-01-04 | 2 | -69/+88 |
| | | | | | | | | factory functions, so you can call quicktime functions that are implemented as methods on NULL too. Still don't allow quicktime functions to return NULL pointers, though: I think this always signals an error condition. | ||||
* | Show how to re-enable GC during timings. | Raymond Hettinger | 2004-01-04 | 1 | -0/+12 |
| | |||||
* | FIx unicodefilename support of posix.uname(). This fixes test_unicode_file | Hye-Shik Chang | 2004-01-04 | 1 | -1/+2 |
| | | | | failure on FreeBSD. | ||||
* | Exercise sorted() where possible | Raymond Hettinger | 2004-01-04 | 1 | -3/+1 |
| | |||||
* | Apply pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 2 | -16/+8 |
| | | | | | Formerly, the length was only fetched from sequence objects. Now, any object that reports its length can benefit from pre-sizing. | ||||
* | Bump build number | Martin v. Löwis | 2004-01-04 | 1 | -2/+2 |
| | |||||
* | Apply map/zip pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 1 | -11/+7 |
| | | | | | Formerly, the length was only fetched from sequence objects. Now, any object that reports its length can benefit from pre-sizing. | ||||
* | Apply tuple/list pre-sizing optimization to a broader class of objects. | Raymond Hettinger | 2004-01-04 | 2 | -9/+5 |
| | | | | | | | | Formerly, length data fetched from sequence objects. Now, any object that reports its length can benefit from pre-sizing. On one sample timing, it gave a threefold speedup for list(s) where s was a set object. | ||||
* | Convert return value to boolean. | Raymond Hettinger | 2004-01-04 | 1 | -1/+1 |
| | |||||
* | SF patch #868736: Disable GC for timeit | Raymond Hettinger | 2004-01-04 | 1 | -1/+7 |
| | | | | Make timings more consistent by temporarily disabling GC. | ||||
* | Fix small factual error. | Raymond Hettinger | 2004-01-04 | 1 | -1/+1 |
| | |||||
* | Update to record .pyd files removed for Python 2.4. | Tim Peters | 2004-01-04 | 1 | -8/+8 |
| | |||||
* | That's it -- works as well under VC6 as it ever did now. | Tim Peters | 2004-01-04 | 1 | -0/+41 |
| | |||||
* | The _tkinter subproject works with VC6 again. | Tim Peters | 2004-01-04 | 1 | -2/+2 |
| | |||||
* | The bz2 subproject works with VC6 again. | Tim Peters | 2004-01-04 | 1 | -4/+4 |
| | |||||
* | The _ssl subproject may <heh> be working w/ VC6 again. | Tim Peters | 2004-01-04 | 2 | -0/+184 |
| | |||||
* | The _bsddb subproject works again under VC6. | Tim Peters | 2004-01-04 | 1 | -2/+2 |
| | |||||
* | Removed dead text about MS subprojects that no longer exist. | Tim Peters | 2004-01-04 | 2 | -29/+1 |
| | |||||
* | Getting closer (but not yet there) to being able to compile under VC6 | Tim Peters | 2004-01-04 | 10 | -811/+29 |
| | | | | | | | | | | | | | | again. Removed the following subprojects and folded them into pythoncore, to match what's being done under VC7. We *can* build the core DLL under VC6 again after this: datetime.dsp winreg.dsp parser.dsp _sre.dsp _csv.dsp mmap.dsp _symtable.dsp | ||||
* | Documentation for new RFC 3548 functions. | Barry Warsaw | 2004-01-04 | 1 | -13/+106 |
| | |||||
* | Add note about new base64.py module support for RFC 3548. | Barry Warsaw | 2004-01-04 | 1 | -0/+3 |
| | |||||
* | More complete code coverage, including testing the new RFC 3548 support. | Barry Warsaw | 2004-01-04 | 1 | -26/+181 |
| | |||||
* | Added more complete RFC 3548 support for Base64, Base32, and Base16 | Barry Warsaw | 2004-01-04 | 1 | -9/+288 |
| | | | | | encoding and decoding, including optional case folding and optional alternative alphabets. | ||||
* | Cosmetic fix for wrongly indented tabs with ts=4. | Hye-Shik Chang | 2004-01-03 | 1 | -8/+8 |
| | |||||
* | Added interfaces for most of the stuff in QuickTimeComponents.h. | Jack Jansen | 2004-01-03 | 3 | -3/+9804 |
| | |||||
* | Tons of changes to get this closer to being buildable from this directory; | Tim Peters | 2004-01-03 | 24 | -202/+504 |
| | | | | still far away, but a lot closer than it was. | ||||
* | Added support for ImageCompression.h APIs. | Jack Jansen | 2004-01-02 | 3 | -1/+4309 |
| | |||||
* | Updated for QuickTime 6.0, Universal Header 3.4.2. | Jack Jansen | 2004-01-02 | 3 | -5/+819 |
| | |||||
* | Add comment to mollify Tim. | Jeremy Hylton | 2004-01-02 | 1 | -0/+2 |
| | |||||
* | Move VC6 project files here. | Martin v. Löwis | 2004-01-02 | 25 | -1/+3159 |
| | |||||
* | Update build procedure to VC 7.1; make more modules builtin. | Martin v. Löwis | 2004-01-02 | 1 | -0/+14 |
| | |||||
* | Update build procedure to VC 7.1. | Martin v. Löwis | 2004-01-02 | 41 | -3152/+5132 |
| | |||||
* | Update build procedure to VC 7.1 and newer versions of several packages. | Martin v. Löwis | 2004-01-02 | 1 | -27/+31 |
| | |||||
* | The script now takes an optional command-line argument to specify how many | Alex Martelli | 2004-01-02 | 1 | -4/+19 |
| | | | | loops to run (default remains 50,000 if no argument is specified). |