Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed status from "beta" to "production"; since logging has been part of ↵ | Vinay Sajip | 2006-05-18 | 1 | -1/+1 |
| | | | | the stdlib since 2.3, it should be safe to make this assertion ;-) | ||||
* | Bug #1490688: properly document %e, %f, %g format subtleties. | Georg Brandl | 2006-05-18 | 1 | -11/+30 |
| | |||||
* | Bug #1462152: file() now checks more thoroughly for invalid mode | Georg Brandl | 2006-05-18 | 4 | -37/+60 |
| | | | | | strings and removes a possible "U" before passing the mode to the C library function. | ||||
* | Little cleanup | Neal Norwitz | 2006-05-18 | 2 | -4/+4 |
| | |||||
* | Fix test_locale for platforms without a default thousands separator. | Georg Brandl | 2006-05-18 | 1 | -5/+8 |
| | |||||
* | Remove unused import. | Georg Brandl | 2006-05-18 | 2 | -2/+2 |
| | |||||
* | Amendments to patch #1484695. | Georg Brandl | 2006-05-18 | 1 | -45/+52 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-18 | 2 | -12/+12 |
| | |||||
* | Patch #1180296: improve locale string formatting functions | Georg Brandl | 2006-05-17 | 4 | -55/+205 |
| | |||||
* | Delay-import some large modules to speed up urllib2 import. | Georg Brandl | 2006-05-17 | 1 | -8/+28 |
| | | | | (fixes #1484793). | ||||
* | Patch #1486962: Several bugs in the turtle Tk demo module were fixed | Georg Brandl | 2006-05-17 | 2 | -18/+568 |
| | | | | and several features added, such as speed and geometry control. | ||||
* | Add global debug flag to cookielib to avoid heavy dependency on the logging ↵ | Georg Brandl | 2006-05-17 | 1 | -63/+74 |
| | | | | | | module. Resolves #1484758. | ||||
* | Patch #1490224: set time.altzone correctly on Cygwin. | Georg Brandl | 2006-05-17 | 2 | -1/+3 |
| | |||||
* | Fix typo in os.utime docstring (patch #1490189) | Georg Brandl | 2006-05-17 | 1 | -1/+1 |
| | |||||
* | Apply patch #1489784 from Michael Foord. | Georg Brandl | 2006-05-17 | 1 | -39/+62 |
| | |||||
* | Remove misleading comment about type-class unification. | Georg Brandl | 2006-05-17 | 1 | -6/+5 |
| | |||||
* | PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path. | Tim Peters | 2006-05-17 | 1 | -5/+9 |
| | |||||
* | Text files missing the SVN eol-style property. | Tim Peters | 2006-05-16 | 27 | -1427/+1427 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-16 | 2 | -3/+3 |
| | |||||
* | Document ImportWarning | George Yoshida | 2006-05-16 | 1 | -0/+5 |
| | |||||
* | Mention that Exception is now a subclass of BaseException. | George Yoshida | 2006-05-16 | 1 | -1/+1 |
| | | | | | Remove a sentence that says that BaseException inherits from BaseException. (I guess this is just a copy & paste mistake.) | ||||
* | Update for 'ImportWarning' | George Yoshida | 2006-05-16 | 1 | -3/+3 |
| | |||||
* | PEP 243 has been withdrawn, so don't refer to it any more. | Andrew M. Kuchling | 2006-05-16 | 1 | -26/+14 |
| | | | | The PyPI upload material has been moved into the section on PEP314. | ||||
* | Add item | Andrew M. Kuchling | 2006-05-16 | 1 | -0/+6 |
| | |||||
* | Patch #1435422: zlib's compress and decompress objects now have a | Georg Brandl | 2006-05-16 | 4 | -0/+175 |
| | | | | copy() method. | ||||
* | - Test for sys/statvfs.h before including it, as statvfs is present | Martin v. Löwis | 2006-05-16 | 4 | -10/+14 |
| | | | | | on some OSX installation, but its header file is not. Will backport to 2.4 | ||||
* | test_directory(): Remove the leftover temp directory that's making | Tim Peters | 2006-05-15 | 1 | -0/+4 |
| | | | | the Windows buildbots fail test_tarfile. | ||||
* | ReadDetectFileobjTest: repair Windows disasters by opening | Tim Peters | 2006-05-15 | 1 | -1/+2 |
| | | | | | | | | | | the file object in binary mode. The Windows buildbot slaves shouldn't swap themselves to death anymore. However, test_tarfile may still fail because of a temp directory left behind from a previous failing run. Windows buildbot owners may need to remove that directory by hand. | ||||
* | [ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634) | Georg Brandl | 2006-05-15 | 3 | -2/+93 |
| | |||||
* | Remove bogus DECREF of self. | Martin v. Löwis | 2006-05-15 | 1 | -65/+32 |
| | | | | | Change __str__() functions to METH_O. Change WindowsError__str__ to use PyTuple_Pack. | ||||
* | Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport | Neal Norwitz | 2006-05-15 | 3 | -1/+4 |
| | |||||
* | - Bug #1487966: Fix SystemError with conditional expression in assignment | Neal Norwitz | 2006-05-15 | 4 | -16/+25 |
| | | | | Most of the test_syntax changes are just updating the numbers. | ||||
* | Move items implemented after a2 into the new a3 section | Neal Norwitz | 2006-05-15 | 1 | -35/+61 |
| | |||||
* | Fix memory leak. | Martin v. Löwis | 2006-05-15 | 1 | -0/+1 |
| | |||||
* | I missed one small detail in my rewrite of the osx build files: the path | Ronald Oussoren | 2006-05-14 | 1 | -2/+2 |
| | | | | to the Python.app template. | ||||
* | A first cut at replacing the icons on MacOS X. This replaces all icons by icons | Ronald Oussoren | 2006-05-14 | 10 | -0/+3 |
| | | | | | | | based on the new python.org logo. These are also the first icons that are "proper" OSX icons. These icons were created by Jacob Rus. | ||||
* | Rework the build system for osx applications: | Ronald Oussoren | 2006-05-14 | 21 | -974/+547 |
| | | | | | | | | | | | * Don't use xcodebuild for building PythonLauncher, but use a normal unix makefile. This makes it a lot easier to use the same build flags as for the rest of python (e.g. make a universal version of python launcher) * Convert the mac makefile-s to makefile.in-s and use configure to set makefile variables instead of forwarding them as command-line arguments * Add a C version of pythonw, that we you can use '#!/usr/local/bin/pythonw' * Build IDLE.app using bundlebuilder instead of BuildApplet, that will allow easier modification of the bundle contents later on. | ||||
* | Remove lie in new comment. | Tim Peters | 2006-05-13 | 1 | -3/+1 |
| | |||||
* | Typo repair. | Tim Peters | 2006-05-13 | 2 | -2/+2 |
| | |||||
* | Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV | Tim Peters | 2006-05-13 | 5 | -40/+127 |
| | | | | | | | | | | | | about "%u", "%lu" and "%zu" formats. Since PyString_FromFormat and PyErr_Format have exactly the same rules (both inherited from PyString_FromFormatV), it would be good if someone with more LaTeX Fu changed one of them to just point to the other. Their docs were way out of synch before this patch, and I just did a mass copy+paste to repair that. Not a backport candidate (this is a new feature). | ||||
* | Revert 43315: Printing of %zd must be signed. | Martin v. Löwis | 2006-05-13 | 1 | -2/+2 |
| | |||||
* | Add \exception markup | George Yoshida | 2006-05-13 | 2 | -3/+3 |
| | |||||
* | Integrated the rest of the pysqlite reference manual into the Python | Gerhard Häring | 2006-05-12 | 1 | -44/+316 |
| | | | | documentation. Ready to be reviewed and improved upon. | ||||
* | add svn:eol-style native svn:keywords Id | Thomas Heller | 2006-05-12 | 1 | -104/+104 |
| | |||||
* | set svn properties | Thomas Heller | 2006-05-12 | 0 | -0/+0 |
| | |||||
* | Add missing svn properties. | Thomas Heller | 2006-05-12 | 1 | -122/+122 |
| | |||||
* | Duplicated description about the illegal continue usage can be found in ↵ | George Yoshida | 2006-05-12 | 1 | -5/+2 |
| | | | | | | nearly the same place. They are same, so keep the original one and remove the later-added one. | ||||
* | Fix alignment error on Itanium. | Martin v. Löwis | 2006-05-12 | 1 | -3/+6 |
| | |||||
* | At first there were 6 steps, but one was removed after that. | George Yoshida | 2006-05-12 | 1 | -1/+1 |
| | |||||
* | Move icon files into DLLs dir. Fixes #1477968. | Martin v. Löwis | 2006-05-12 | 1 | -5/+5 |
| |