summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * Add various updates reflecting the last two weeks of checkins:Raymond Hettinger2004-01-051-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 characterHye-Shik Chang2004-01-052-59/+150
| | | | separaters on str.split() and str.rsplit().
* Allow passing NULL pointers by passing None. This also works for theJack Jansen2004-01-042-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 Hettinger2004-01-041-0/+12
|
* FIx unicodefilename support of posix.uname(). This fixes test_unicode_fileHye-Shik Chang2004-01-041-1/+2
| | | | failure on FreeBSD.
* Exercise sorted() where possibleRaymond Hettinger2004-01-041-3/+1
|
* Apply pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-042-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 numberMartin v. Löwis2004-01-041-2/+2
|
* Apply map/zip pre-sizing optimization to a broader class of objects.Raymond Hettinger2004-01-041-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 Hettinger2004-01-042-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 Hettinger2004-01-041-1/+1
|
* SF patch #868736: Disable GC for timeitRaymond Hettinger2004-01-041-1/+7
| | | | Make timings more consistent by temporarily disabling GC.
* Fix small factual error.Raymond Hettinger2004-01-041-1/+1
|
* Update to record .pyd files removed for Python 2.4.Tim Peters2004-01-041-8/+8
|
* That's it -- works as well under VC6 as it ever did now.Tim Peters2004-01-041-0/+41
|
* The _tkinter subproject works with VC6 again.Tim Peters2004-01-041-2/+2
|
* The bz2 subproject works with VC6 again.Tim Peters2004-01-041-4/+4
|
* The _ssl subproject may <heh> be working w/ VC6 again.Tim Peters2004-01-042-0/+184
|
* The _bsddb subproject works again under VC6.Tim Peters2004-01-041-2/+2
|
* Removed dead text about MS subprojects that no longer exist.Tim Peters2004-01-042-29/+1
|
* Getting closer (but not yet there) to being able to compile under VC6Tim Peters2004-01-0410-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 Warsaw2004-01-041-13/+106
|
* Add note about new base64.py module support for RFC 3548.Barry Warsaw2004-01-041-0/+3
|
* More complete code coverage, including testing the new RFC 3548 support.Barry Warsaw2004-01-041-26/+181
|
* Added more complete RFC 3548 support for Base64, Base32, and Base16Barry Warsaw2004-01-041-9/+288
| | | | | encoding and decoding, including optional case folding and optional alternative alphabets.
* Cosmetic fix for wrongly indented tabs with ts=4.Hye-Shik Chang2004-01-031-8/+8
|
* Added interfaces for most of the stuff in QuickTimeComponents.h.Jack Jansen2004-01-033-3/+9804
|
* Tons of changes to get this closer to being buildable from this directory;Tim Peters2004-01-0324-202/+504
| | | | still far away, but a lot closer than it was.
* Added support for ImageCompression.h APIs.Jack Jansen2004-01-023-1/+4309
|
* Updated for QuickTime 6.0, Universal Header 3.4.2.Jack Jansen2004-01-023-5/+819
|
* Add comment to mollify Tim.Jeremy Hylton2004-01-021-0/+2
|
* Move VC6 project files here.Martin v. Löwis2004-01-0225-1/+3159
|
* Update build procedure to VC 7.1; make more modules builtin.Martin v. Löwis2004-01-021-0/+14
|
* Update build procedure to VC 7.1.Martin v. Löwis2004-01-0241-3152/+5132
|
* Update build procedure to VC 7.1 and newer versions of several packages.Martin v. Löwis2004-01-021-27/+31
|
* The script now takes an optional command-line argument to specify how manyAlex Martelli2004-01-021-4/+19
| | | | loops to run (default remains 50,000 if no argument is specified).
* [Bug #812325 ] tarfile.close() can write out more bytes to the outputAndrew M. Kuchling2004-01-021-0/+1
| | | | | than are specified by the buffer size. The patch calls .__write() to ensure that any full blocks are written out.
* list the Python Software Foundation on all the documentsFred Drake2004-01-027-7/+28
|
* PythonLabs --> Python Software FoundationFred Drake2004-01-021-1/+1
|
* - Print correct exception even if source file changed since shell wasKurt B. Kaiser2004-01-022-2/+7
| | | | | | | restarted. IDLEfork Patch 869012 Noam Raphael Modified Files: NEWS.txt run.py
* Use 'input' as variable name, even though it shadows a built-inAndrew M. Kuchling2004-01-011-9/+7
| | | | | Remove applications of rsplit() and random numbers Typo fixes; minor tweaks
* in the section "The interpreter stack":Fred Drake2004-01-011-30/+39
| | | | | | | - rearranged a bit to avoid duplicated information - provide more complete (and hopefully less confusing) descriptions of the return values for most of these functions (close SF bug #563298)
* Add sets to list of picklable objects.Raymond Hettinger2004-01-011-1/+1
|
* clean up indexing for None, NotImplementedFred Drake2004-01-013-6/+4
| | | | closes SF bug #820344
* fix reference to File Object documentationFred Drake2004-01-011-1/+3
| | | | closes SF bug #825810
* SF Patch 681780: Faster commonprefix (OS independent)Raymond Hettinger2003-12-311-10/+7
| | | | | | | Improved based on discussions at: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/252177 http://groups.google.com/groups?th=fc7b54f11af6b24e&seekm=bss2so$om$00$1@news.t-online.com
* SF patch #859286: documentation bool change fixRaymond Hettinger2003-12-314-8/+11
| | | | (Contributed by George Yoshida.)
* * Simplify and speedup logic for tp_print.Raymond Hettinger2003-12-311-15/+29
| | | | * Speed-up intersection whenever PyDict_Next can be used.
* use conventional whitespace in interactive exampleFred Drake2003-12-311-2/+2
|
* Correct misrepresentation of print (it uses str(), not `...` forGuido van Rossum2003-12-311-3/+5
| | | | conversion). Hopefully I've not messed up the formatting.