Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rewrite intro paragraphs and add a "See also" box for the link to the | Greg Ward | 2003-03-10 | 1 | -57/+60 |
| | | | | | | | official OSS docs. Markup fixes: change \code{} variously to \function{}, \method{}, or \constant{} as appropriate. | ||||
* | Fix two unformatted lists: one is now an 'enumerate' environment, the | Greg Ward | 2003-03-10 | 1 | -19/+31 |
| | | | | | | other a 'tableii'. Formatting/typo fix. | ||||
* | Add libossaudiodev.tex. | Greg Ward | 2003-03-10 | 2 | -0/+2 |
| | |||||
* | Wrap all paragraphs to 72 columns. | Greg Ward | 2003-03-09 | 1 | -117/+123 |
| | | | | | | Two spaces between sentences. Fix em-dashes -- should be "---" not " - ". Spelling fix. | ||||
* | Documentation for the ossaudiodev module. | Greg Ward | 2003-03-09 | 1 | -0/+289 |
| | | | | | Initial revision supplied by Nicholas FitzRoy-Dale <wzdd@lardcave.net> (emailed to me [gward@python.net] 2003-03-08 23:37 +1100). | ||||
* | SF patch #691928: Use datetime in _strptime | Raymond Hettinger | 2003-03-09 | 2 | -88/+56 |
| | | | | | | | | | | | | Contributed by Brett Cannon. To prevent code duplication, I patched _strptime to use datetime's date object to do Julian day, Gregorian, and day of the week calculations. Patch also includes new regression tests to test results and the calculation gets triggered. Very minor comment changes and the contact email are also changed. | ||||
* | Sf patch #700047: unicode object leaks refcount on resizing | Raymond Hettinger | 2003-03-09 | 1 | -0/+1 |
| | | | | Contributed by Hye-Shik Chang. | ||||
* | Add contributor name. | Raymond Hettinger | 2003-03-09 | 1 | -0/+1 |
| | |||||
* | SF patch #667730: More DictMixin | Raymond Hettinger | 2003-03-09 | 6 | -4/+222 |
| | | | | | | | | * Adds missing pop() methods to weakref.py * Expands test suite to broaden coverage of objects with a mapping interface. Contributed by Sebastien Keim. | ||||
* | SF 698520: Iterator for urllib.URLOpener | Raymond Hettinger | 2003-03-09 | 3 | -1/+9 |
| | | | | Contributed by Brett Cannon. | ||||
* | [ 684677 ] Allow freeze to exclude implicits | Just van Rossum | 2003-03-08 | 1 | -3/+6 |
| | |||||
* | Skip the test if TESTFN_ENCODING is None. Fixes #699386. | Martin v. Löwis | 2003-03-08 | 1 | -19/+6 |
| | |||||
* | _split_ascii(): lstrip the individual lines in the ascii split lines, | Barry Warsaw | 2003-03-07 | 1 | -0/+3 |
| | | | | since we'll be adding our own continuation whitespace later. | ||||
* | test_long_unbreakable_lines_with_continuation(): Another funky example | Barry Warsaw | 2003-03-07 | 1 | -0/+16 |
| | | | | from Jason Mastaler :) | ||||
* | decode_rfc2231(): RFC 2231 allows leaving out both the charset and | Barry Warsaw | 2003-03-07 | 1 | -5/+7 |
| | | | | language without including any single quotes. | ||||
* | test_rfc2231_no_language_or_charset(): RFC 2231 allows leaving out | Barry Warsaw | 2003-03-07 | 1 | -0/+11 |
| | | | | both the charset and language without including any single quotes. | ||||
* | Don't quote the path to Python unless the path contains an embedded space. | Tim Peters | 2003-03-07 | 1 | -1/+4 |
| | | | | | | | | Quoting the path doesn't work on Win2K (cmd.exe) regardless, this is just a hack to let the test pass again on Win2K (so long as Python isn't installed in a path that does contain an embedded space). On Win2K it looks like we'd also have to add a second pair of double quotes, around the entire command line. | ||||
* | Whitespace normalization. | Tim Peters | 2003-03-07 | 5 | -44/+44 |
| | |||||
* | whitespace normalization | Barry Warsaw | 2003-03-07 | 1 | -6/+6 |
| | |||||
* | This test relied on significant trailing whitespace in a string literal. | Tim Peters | 2003-03-07 | 1 | -7/+12 |
| | | | | Evil. | ||||
* | Add a little more verbiage about the bsddb module/package change. It's | Skip Montanaro | 2003-03-07 | 1 | -1/+8 |
| | | | | | | clear from recent discussions on c.l.py that people are a bit confused about the differences between the old bsddb, the new bssdb, the bsddb3/PyBSDDB package and changes to file formats. Tried to clarify the issues. | ||||
* | _write_headers(), _split_header(): All of the smarts for splitting | Barry Warsaw | 2003-03-07 | 1 | -35/+20 |
| | | | | | | long header lines is now (properly) in the Header class. So we no longer need _split_header() and we'll just defer to Header.encode() when we have a plain string. | ||||
* | More internal refinements of the ascii splitting algorithm. | Barry Warsaw | 2003-03-07 | 1 | -7/+10 |
| | | | | | | | | | | | | | | _encode_chunks(): Pass maxlinelen in instead of always using self._maxlinelen, so we can adjust for shorter initial lines. Pass this value through to _max_append(). encode(): Weave maxlinelen through to the _encode_chunks() call. _split_ascii(): When recursively splitting a line on spaces (i.e. lower level syntactic split), don't append the whole returned string. Instead, split it on linejoiners and extend the lines up to the last line (for proper packing). Calculate the linelen based on the last element in the this list. | ||||
* | Test_ioctl and test_tarfile are skipped on MacOS9. | Jack Jansen | 2003-03-07 | 1 | -0/+2 |
| | |||||
* | Removed unused variable | Jack Jansen | 2003-03-07 | 1 | -1/+0 |
| | |||||
* | Filter out macfs warning. | Jack Jansen | 2003-03-07 | 1 | -0/+2 |
| | |||||
* | Somebody must not have run the test before checking this in -- it had | Tim Peters | 2003-03-07 | 1 | -1/+1 |
| | | | | a fatal tab/space inconsistency under -tt. | ||||
* | Got PythonStandalone to work again, mainly for debugging purposes (it's much ↵ | Jack Jansen | 2003-03-07 | 2 | -6/+6 |
| | | | | easier to debug GUSI errors in a static build). | ||||
* | test_string_headerinst_eq(): Another Jason test :) | Barry Warsaw | 2003-03-07 | 1 | -0/+14 |
| | |||||
* | - The extended type structure used for heap types (new-style | Guido van Rossum | 2003-03-07 | 3 | -50/+59 |
| | | | | | classes defined by Python code using a class statement) is now exported from object.h as PyHeapTypeObject. (SF patch #696193.) | ||||
* | Minor clarification about the ob_size field. | Fred Drake | 2003-03-07 | 1 | -3/+3 |
| | |||||
* | Make tarfile raise ImportError on MacOS9. The pathname handling needs work, ↵ | Jack Jansen | 2003-03-07 | 1 | -0/+7 |
| | | | | and I don't have time to fix it. I'll file a bug report. | ||||
* | The filename fix of the previous checkin was complete bogus, the problem is ↵ | Jack Jansen | 2003-03-07 | 1 | -3/+3 |
| | | | | elsewhere. Retracting. | ||||
* | Two fixes to make this test pass on MacOS9: | Jack Jansen | 2003-03-07 | 1 | -4/+4 |
| | | | | | | | - the test was sloppy about filenames: "0-REGTYPE-TEXT" was used where the archive held "/0-REGTYPE-TEXT". - tarfile extracts all files in binary mode, but the test expected to be able to read and compare text files in text mode. Use universal text mode. | ||||
* | Test that os.utime and os.chmod actually exist before using them. | Jack Jansen | 2003-03-07 | 1 | -4/+7 |
| | |||||
* | Broke down and made it work for Python 2.0 and up. (Older versions | Guido van Rossum | 2003-03-07 | 1 | -24/+25 |
| | | | | | | | would have required refraining from using string methods -- too painful.) Changed the -s option so that multiple -s options are cumulative. | ||||
* | fix name of db2pickle | Skip Montanaro | 2003-03-07 | 1 | -1/+1 |
| | |||||
* | SF patch #693753: fix for bug 639806: default for dict.pop | Raymond Hettinger | 2003-03-06 | 6 | -11/+51 |
| | | | | (contributed by Michael Stone.) | ||||
* | Repaired a misleading comment Barry inherited from me. | Tim Peters | 2003-03-06 | 1 | -1/+1 |
| | |||||
* | First try to use the OSATerminology module to get the terminology | Jack Jansen | 2003-03-06 | 1 | -9/+36 |
| | | | | | | | resources before reverting to manually reading the resources. Unfortunately there is still a bug in here somewhere: it doesn't work for all applications. | ||||
* | Build the OSATerminology module on MacOSX. | Jack Jansen | 2003-03-06 | 1 | -0/+2 |
| | |||||
* | Various tweaks by Jack because of the different module name, adaptation | Jack Jansen | 2003-03-06 | 1 | -43/+74 |
| | | | | to the Python style, etc. | ||||
* | Module to get OSA terminology description through the "official channels", | Jack Jansen | 2003-03-06 | 1 | -0/+70 |
| | | | | | | in stead of manually getting the AETE/AEUT resource. Donated by Donovan Preston. This is his original code (but with the filename changed) checked in for reference only. | ||||
* | Fix SF bug #697256, PyMarshal_WriteShortToFile() documented, but not implemented | Neal Norwitz | 2003-03-06 | 2 | -7/+0 |
| | | | | Remove prototype and doc. Backport candidate. | ||||
* | _split_ascii(): In the clause where curlen + partlen > maxlen, if the | Barry Warsaw | 2003-03-06 | 1 | -1/+8 |
| | | | | | | part itself is longer than maxlen, and we aren't already splitting on whitespace, then we recursively split the part on whitespace and append that to the this list. | ||||
* | test_long_received_header(): Another test case for folding long | Barry Warsaw | 2003-03-06 | 1 | -0/+15 |
| | | | | | Received headers (first on semis then on whitespace), given by Jason Mastaler. | ||||
* | Reverted the previous change to read() and readline(). | Raymond Hettinger | 2003-03-06 | 1 | -18/+28 |
| | | | | | | Kevin Jacobs found that the code simplification did not exactly match the semantics of the original. Regression test cases were requested. | ||||
* | Add a note explaining why you shouldn't try to compute mean and | Guido van Rossum | 2003-03-06 | 1 | -0/+14 |
| | | | | | standard deviation. Also add an XXX comment wondering if we should refrain from using itertools.repeat(). | ||||
* | test_whitespace_eater_unicode(): Test of the last outstanding bug in | Barry Warsaw | 2003-03-06 | 1 | -0/+8 |
| | | | | SF # 640110. | ||||
* | __unicode__(): When converting to a unicode string, we need to | Barry Warsaw | 2003-03-06 | 1 | -3/+20 |
| | | | | | | preserve spaces in the encoded/unencoded word boundaries. RFC 2047 is ambiguous here, but most people expect the space to be preserved. Really closes SF bug # 640110. |