Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Note that __getitem__() may receive a slice object as the index; | Fred Drake | 2000-09-21 | 1 | -2/+3 |
| | | | | reported by Detlef Lannert <lannert@uni-duesseldorf.de>. | ||||
* | Document directories are not always named with three characters any more; | Fred Drake | 2000-09-21 | 1 | -7/+7 |
| | | | | reported by Detlef Lannert <lannert@uni-duesseldorf.de>. | ||||
* | Fixed a number of small problems reported by Detlef Lannert | Fred Drake | 2000-09-21 | 3 | -9/+8 |
| | | | | <lannert@uni-duesseldorf.de>. | ||||
* | Corran Webster: fix 'change_root()' to handle Mac OS paths. | Greg Ward | 2000-09-21 | 1 | -1/+7 |
| | |||||
* | On Unix, use O_EXCL when creating the .pyc/.pyo files, to avoid a race condition | Guido van Rossum | 2000-09-20 | 1 | -1/+31 |
| | |||||
* | Add a definition of rl_library_version. Reported by jpettit@sourceforge. | Guido van Rossum | 2000-09-20 | 1 | -0/+1 |
| | |||||
* | .use_latex(): Make this a little smarter so that it only runs pdflatex | Fred Drake | 2000-09-20 | 1 | -31/+24 |
| | | | | | once if all the temporary files are available from building a DVI file. This can avoid two runs of pdflatex. | ||||
* | Clarify that the softspace attribute is used by print for state management, | Fred Drake | 2000-09-20 | 1 | -0/+3 |
| | | | | not as a user-controlled parameter. | ||||
* | Add entries for the xml.sax documentation. | Fred Drake | 2000-09-20 | 2 | -0/+2 |
| | |||||
* | First cut at documentation for the xml.sax package (not including any | Fred Drake | 2000-09-20 | 1 | -0/+108 |
| | | | | sub-modules). | ||||
* | change 2-space indent to 4-space indent | Jeremy Hylton | 2000-09-20 | 2 | -2162/+2158 |
| | |||||
* | distutils setup script | Jeremy Hylton | 2000-09-20 | 1 | -0/+9 |
| | |||||
* | Fix typo (newtabwith). | Guido van Rossum | 2000-09-20 | 1 | -1/+1 |
| | |||||
* | *Very* belated application of Thomas Heller's patch to handle | Greg Ward | 2000-09-19 | 1 | -3/+86 |
| | | | | | | | resource files. The gist of the patch is to treat ".rc" and ".mc" files as source files; ".mc" files are compiled to ".rc" and then ".res", and ".rc" files are compiled to ".res". Wish I knew what all these things stood for... | ||||
* | Treat trailing colon in os.path.join("a:", "b") same way for DOS as in | Tim Peters | 2000-09-19 | 1 | -1/+1 |
| | | | | | recent changes to ntpath.py and posixmodule.c. Thanks to Guido for pointing out the inconsistency! | ||||
* | Added GetArgs dialog to EasyDialogs, a very nifty (if I may say so:-) way to ↵ | Jack Jansen | 2000-09-19 | 2 | -4/+236 |
| | | | | create a unix-style sys.argv. | ||||
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 8 | -19/+126 |
| | | | | | | | | | | | | | which implements the automatic conversion from Unicode to a string object using the default encoding. The new API is then put to use to have eval() and exec accept Unicode objects as code parameter. This closes bugs #110924 and #113890. As side-effect, the traditional C APIs PyString_Size() and PyString_AsString() will also accept Unicode objects as parameters. | ||||
* | Temporary fix for Bug #114821. | Guido van Rossum | 2000-09-19 | 1 | -2/+18 |
| | | | | | | | | | | | | | | The cause was that the replace code necessarily used a PCRE internal function to to template expansion. The fix changes the code to use an SRE internal if SRE is used, and a PCRE internal if SRE is used; in a way that should work with 1.5.2. The solution can be sped up tremendously under the assumption that the choice between sre and pre is not changed during the execution of the program; especially replace-all will be slow. But I'll leave that to someone else. | ||||
* | Part of SF patch 101481: on Windows, os.path.join("a:", "b") should yield | Tim Peters | 2000-09-19 | 1 | -1/+1 |
| | | | | "a:b", not "a:/b". Similar change was made to posixmodule.c earlier. | ||||
* | test_userlist.py: | Tim Peters | 2000-09-19 | 1 | -39/+52 |
| | | | | | Added new test for new __contains__ method. Extensive editing to get rid of asserts. | ||||
* | SF patch 101391: implemented UserList.__contains__. | Tim Peters | 2000-09-19 | 1 | -0/+1 |
| | |||||
* | Fix test errors. | Paul Prescod | 2000-09-19 | 2 | -2/+1 |
| | |||||
* | Moshe Zadka <mzadka@geocities.com>: | Fred Drake | 2000-09-19 | 1 | -0/+10 |
| | | | | | | | Document the __contains__() method. (Patch slightly modified by FLD.) This closes SourceForge patch #101387. | ||||
* | Many small clarifications, including many suggested by email. | Fred Drake | 2000-09-19 | 1 | -17/+18 |
| | |||||
* | New test cases for the StringIO module | Martin v. Löwis | 2000-09-19 | 2 | -0/+24 |
| | |||||
* | Don't print specific Node instances unless running verbosely. | Martin v. Löwis | 2000-09-19 | 2 | -4/+10 |
| | | | | Closes Bug #114775. | ||||
* | make_nav_sectref(): Create more minimal HTML, hanging the class attribute | Fred Drake | 2000-09-19 | 1 | -2/+7 |
| | | | | | off an existing anchor tag if available (I think it always is, but am not completely sure). | ||||
* | Clarify a number of issues about the file-like object API based on | Fred Drake | 2000-09-19 | 1 | -20/+36 |
| | | | | discussion on python-dev. | ||||
* | Fixed the error reporting (raise of TestFailed) for the zip() and | Barry Warsaw | 2000-09-19 | 1 | -2/+2 |
| | | | | zip(None) tests. Found by Finn Bock a while ago. | ||||
* | Randall Hopper: Add fpectl functionality patch for FreeBSD. | Guido van Rossum | 2000-09-19 | 1 | -0/+15 |
| | |||||
* | Support sizehint in _fileobject.readlines, as documented. | Martin v. Löwis | 2000-09-19 | 1 | -1/+5 |
| | |||||
* | Set the 'nt' installation scheme for the install command even if run | Thomas Heller | 2000-09-19 | 1 | -8/+25 |
| | | | | | on other systems, so that data, headers, scripts are included in the installer. | ||||
* | Support sizehint in StringIO.readlines, as documented. | Martin v. Löwis | 2000-09-19 | 1 | -1/+5 |
| | |||||
* | Implement readlines function. Closes Bug #110686. | Martin v. Löwis | 2000-09-19 | 1 | -0/+36 |
| | |||||
* | Obscure marshal fixes: | Tim Peters | 2000-09-19 | 1 | -4/+4 |
| | | | | | | | | When reading a short, sign-extend on platforms where shorts are bigger than 16 bits. When reading a long, repair the unportable sign extension that was being done for 64-bit machines (it assumed that signed right shift sign-extends). | ||||
* | Patch #101121, by Ka-Ping Yee: cosmetic cleanup of cgi.py, using my | Guido van Rossum | 2000-09-19 | 1 | -37/+37 |
| | | | | | | | | | | | | style conventions. (Ping has checkin privileges but apparently ignores them at the moment.) Ping improves a few doc strings and fixes style violations like foo ( bar ). An addition of my own: rearrange the printing of various items in test() so that the (long) environment comes at the end. This avoids having to scroll if you want to see the current directory or command line arguments. | ||||
* | An honest attempt to make this work on Unix, Windows, and even | Guido van Rossum | 2000-09-19 | 1 | -81/+173 |
| | | | | | | Macintosh (the latter untested). This closes Bug #110839. | ||||
* | Only supply popen2, popen3 when fork exists. | Guido van Rossum | 2000-09-19 | 1 | -13/+15 |
| | | | | (This avoids defining non-working versions of these on the Mac.) | ||||
* | Make better use of GNU Pth -- patch by Andy Dustman. | Guido van Rossum | 2000-09-19 | 7 | -558/+521 |
| | | | | | | | | | | | | | | | I can't test this, so I'm just checking it in with blind faith in Andy. I've tested that it doesn't broeak a non-Pth build on Linux. Changes include: - There's a --with-pth configure option. - Instead of _GNU_PTH, we test for HAVE_PTH. - Better signal handling. - (The config.h.in file is regenerated in a slightly different order.) | ||||
* | Updated Windows build info. | Tim Peters | 2000-09-19 | 1 | -4/+3 |
| | |||||
* | Do not close socket when a Content-Length is 0. This make the | Jeremy Hylton | 2000-09-18 | 1 | -15/+20 |
| | | | | | | | interface consistent: The client is responsible for closing the socket, regardless of the amount of data received. Restore suport for set_debuglevel call. | ||||
* | Test output that goes with updated test_minidom. | Paul Prescod | 2000-09-18 | 1 | -0/+44 |
| | |||||
* | Fix serious typo! | Fred Drake | 2000-09-18 | 1 | -1/+3 |
| | | | | Add the new constants to the module docstring. | ||||
* | Change assertions to confirmations so that optimization doesn't disable | Paul Prescod | 2000-09-18 | 1 | -46/+66 |
| | | | | checks. | ||||
* | Fix up the cleanup of the temporary DB so it works for BSD DB's | Fred Drake | 2000-09-18 | 1 | -4/+12 |
| | | | | compatibility layer as well as "classic" ndbm. | ||||
* | Reduce the number of imports needed. | Fred Drake | 2000-09-18 | 1 | -20/+23 |
| | | | | Make the code conform better to the Python style guide. | ||||
* | Document the "printable" and "punctuation" constants added to the string | Fred Drake | 2000-09-18 | 1 | -0/+11 |
| | | | | module. | ||||
* | Richard Mortier <rmm1002@users.sourceforge.net>: | Fred Drake | 2000-09-18 | 1 | -0/+2 |
| | | | | Add the constants "printable" and "punctuation" to the string module. | ||||
* | Remove two unnecessary imports. | Fred Drake | 2000-09-18 | 1 | -26/+26 |
| | | | | | | | Update the module docstring to reflect the actual list of modules in the xml.sax package. Make the code better conform to the Python style guide. | ||||
* | Once we're done with the sys module, remove it from the namespace so | Fred Drake | 2000-09-18 | 1 | -13/+11 |
| | | | | this module is "import *" safe. |