summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch 1353 by Jacob Winther.Guido van Rossum2007-10-291-0/+1
| | | | Add mp4 mapping to mimetypes.py.
* Add confirmation dialog before printing. Patch 1717170 Tal Einat.Kurt B. Kaiser2007-10-282-1/+13
|
* Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet)Hye-Shik Chang2007-10-285-4/+5
|
* - Add support for FreeBSD 8 which is recently forked from FreeBSD 7.Hye-Shik Chang2007-10-285-24/+673
| | | | - Regenerate IN module for most recent maintenance tree of FreeBSD 6 and 7.
* Update URL for Pygments. 0.8.1 is no longer availableNeal Norwitz2007-10-271-1/+1
|
* Fix new pop() method on os.environ on ignorecase-platforms.Georg Brandl2007-10-261-1/+1
|
* 1. Add comments to provide top-level documentation.Kurt B. Kaiser2007-10-261-30/+68
| | | | | 2. Refactor to use more descriptive names. 3. Enhance tests in main().
* Correct an ancient bug in an unused path by removing that path: register() isKurt B. Kaiser2007-10-251-5/+1
| | | | now idempotent.
* ffi_type_longdouble may be already #defined.Thomas Heller2007-10-251-2/+4
| | | | See issue 1324.
* - Build using system ffi library on arm*-linux*, pass --with-system-ffi to ↵Matthias Klose2007-10-252-3/+3
| | | | CONFIG_ARGS
* Missing DECREFsRaymond Hettinger2007-10-251-0/+2
|
* Bug #1287: make os.environ.pop() work as expected.Georg Brandl2007-10-243-3/+13
|
* - Build using system ffi library on arm*-linux*.Matthias Klose2007-10-243-5/+146
|
* Added unittest for calling a function with paramflags (backport from py3k ↵Thomas Heller2007-10-241-0/+18
| | | | branch).
* Issue 1290. CharacterData.__repr__ was constructing a stringFacundo Batista2007-10-241-1/+1
| | | | in response that keeped having a non-ascii character.
* Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__()Vinay Sajip2007-10-241-5/+5
|
* Fixup error return and add support for intermixed ints and floats/Raymond Hettinger2007-10-241-1/+7
|
* Optimize sum() for integer and float inputs.Raymond Hettinger2007-10-242-0/+72
|
* Fixup news entryRaymond Hettinger2007-10-231-3/+1
|
* Update nameAndrew M. Kuchling2007-10-231-2/+2
|
* Shorter name for namedtuple()Raymond Hettinger2007-10-233-22/+24
|
* Issue 1307 by Derek Shockey, fox the same bug for RCPT.Guido van Rossum2007-10-231-1/+1
| | | | Neal: please backport!
* Update Pygments version from externals.Georg Brandl2007-10-231-1/+1
|
* Bug #1313, fix typo (wrong variable name) in example.Neal Norwitz2007-10-231-1/+1
|
* Add phuang patch from Issue 708374 which adds offset parameter to mmap module.Travis E. Oliphant2007-10-233-36/+130
|
* Issue #1307, patch by Derek Shockey.Guido van Rossum2007-10-221-1/+1
| | | | | When "MAIL" is received without args, an exception happens instead of sending a 501 syntax error response.
* Add Chris Monson so he can edit PEPs.Neal Norwitz2007-10-221-0/+3
|
* Add :term:s for "new-style class".Georg Brandl2007-10-2111-20/+27
|
* Add :term:s for iterator.Georg Brandl2007-10-2120-45/+48
|
* Add :term: for generators.Georg Brandl2007-10-2117-46/+47
|
* Unify "file-descriptor" to "file descriptor".Georg Brandl2007-10-213-3/+3
|
* Add :term:s for descriptors.Georg Brandl2007-10-2110-29/+30
|
* Add markup to new function descriptions.Georg Brandl2007-10-211-18/+19
|
* Unify "byte code" to "bytecode". Also sprinkle :term: markup for it.Georg Brandl2007-10-2110-40/+40
|
* Remove duplicate crasher.Georg Brandl2007-10-211-8/+0
|
* Add a crasher for the long-standing issue with closing a fileArmin Rigo2007-10-211-0/+14
| | | | while another thread uses it.
* Use correct header lineAndrew M. Kuchling2007-10-201-1/+1
|
* Various itemsAndrew M. Kuchling2007-10-201-6/+40
|
* Fix protocol nameAndrew M. Kuchling2007-10-201-1/+1
|
* Even more clarification.Georg Brandl2007-10-201-1/+1
|
* Clarify -E docs.Georg Brandl2007-10-201-3/+3
|
* Add entry to ACKS.Georg Brandl2007-10-201-0/+1
|
* Change title, for now.Georg Brandl2007-10-201-2/+2
|
* * Add new toplevel chapter, "Using Python." (how to install,Georg Brandl2007-10-205-1/+445
| | | | | | | configure and setup python on different platforms -- at least in theory.) * Move the Python on Mac docs in that chapter. * Add a new chapter about the command line invocation, by stargaming.
* Document new directive "envvar".Georg Brandl2007-10-201-0/+5
|
* Make a path more Unix-standardy.Georg Brandl2007-10-201-1/+1
|
* Document new "cmdoption" directive.Georg Brandl2007-10-201-0/+8
|
* Fix code being interpreted as a target.Georg Brandl2007-10-201-3/+5
|
* The constructor from tuple was way too permissive: it allowed badFacundo Batista2007-10-192-10/+63
| | | | | | | | coefficient numbers, floats in the sign, and other details that generated directly the wrong number in the best case, or triggered misfunctionality in the alorithms. Test cases added for these issues. Thanks Mark Dickinson.
* Fix ctypes on 32-bit systems when Python is configured --with-system-ffi.Thomas Heller2007-10-192-6/+13
| | | | | | See also https://bugs.launchpad.net/bugs/72505. Ported from release25-maint branch.