Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add macros for checking for long double and defining the size of long double ↵ | Travis E. Oliphant | 2007-10-12 | 3 | -1/+481 |
| | | | | on the platform. Ctypes and Struct module will both need them. | ||||
* | Fix Issue 1268 with the array module by backing-out the 'w' addition. All ↵ | Travis E. Oliphant | 2007-10-12 | 1 | -18/+36 |
| | | | | builds will continue to use 'u' for unicode. | ||||
* | Make _load_testfile() use its encoding argument when __loader__ is defined. | Brett Cannon | 2007-10-12 | 2 | -1/+10 |
| | |||||
* | Merge r58434: | Gregory P. Smith | 2007-10-12 | 2 | -23/+79 |
| | | | | | | Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append was useless due to inverted logic. Also adds a test case for RECNO dbs to test_dbshelve. | ||||
* | Remove self-referential import. | Brett Cannon | 2007-10-11 | 1 | -2/+1 |
| | |||||
* | clean out some hotshot-related build turds | Fred Drake | 2007-10-11 | 4 | -17/+0 |
| | |||||
* | remove hotshot profiler from Py3k | Fred Drake | 2007-10-11 | 13 | -2383/+14 |
| | |||||
* | Two changes that are definitely problem-free and avoid calling print() | Guido van Rossum | 2007-10-10 | 2 | -6/+4 |
| | | | | with a bytes instance (as this will soon print something differently). | ||||
* | get rid of some more PyString uses. | Guido van Rossum | 2007-10-10 | 1 | -15/+19 |
| | | | | | Only the filename is still a PyString now. (We'll need to deal with the default filesystem encoding to do it right.) | ||||
* | Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the code | Guido van Rossum | 2007-10-10 | 1 | -7/+10 |
| | | | | to guarantee the claim that it doesn't set an exception. | ||||
* | Fix another stray PyString reference that should be PyBytes; and its comment. | Guido van Rossum | 2007-10-10 | 1 | -2/+2 |
| | |||||
* | Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytes | Guido van Rossum | 2007-10-10 | 1 | -5/+10 |
| | | | | | object with PyString calls and not checking errors. This caused the display of syntax errors to be deformed. | ||||
* | Random changes having to do with readline() and bytes. | Guido van Rossum | 2007-10-10 | 1 | -25/+14 |
| | |||||
* | the default class attr is needed! | Kurt B. Kaiser | 2007-10-10 | 1 | -0/+1 |
| | |||||
* | Don't depend on str8.splitlines() in test_chunkcoding(). | Guido van Rossum | 2007-10-10 | 1 | -2/+8 |
| | |||||
* | Windows EOL sequence not converted correctly, encoding error. | Kurt B. Kaiser | 2007-10-09 | 2 | -4/+13 |
| | | | | | | | Caused file save to fail. Bug 1130. M idlelib/IOBinding.py M idlelib/NEWS.txt | ||||
* | PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). | Guido van Rossum | 2007-10-09 | 1 | -1/+1 |
| | |||||
* | use a reliable host | Gregory P. Smith | 2007-10-09 | 1 | -4/+1 |
| | |||||
* | Silly script I'd rather not throw away. | Guido van Rossum | 2007-10-09 | 1 | -0/+93 |
| | |||||
* | Patch #1049 by Thomas Lee. | Guido van Rossum | 2007-10-09 | 2 | -7/+9 |
| | | | | | Changes comparisons between PyBytes and PyUnicode to return unequal instead of raising TypeError. | ||||
* | Replace all (locale-dependent) uses of isupper(), tolower(), etc., by | Guido van Rossum | 2007-10-09 | 1 | -65/+302 |
| | | | | locally-defined macros that assume ASCII and only consider ASCII letters. | ||||
* | Change the default encoding for ftplib.FTP to latin1 so that bytes can be in | Brett Cannon | 2007-10-08 | 1 | -1/+1 |
| | | | | the range of 255 instead of only 128. | ||||
* | #1228: new comparison behavior. | Georg Brandl | 2007-10-08 | 1 | -12/+5 |
| | |||||
* | Remove buffer() from the docs. | Georg Brandl | 2007-10-08 | 1 | -28/+0 |
| | |||||
* | Remove unused variables | Neal Norwitz | 2007-10-08 | 2 | -2/+0 |
| | |||||
* | Remove more traces of bufferobject.[ch] from build files etc. | Guido van Rossum | 2007-10-08 | 5 | -24/+0 |
| | |||||
* | Delete bufferobject.[ch]. | Guido van Rossum | 2007-10-08 | 6 | -762/+9 |
| | | | | This will undoubtedly require Windows build file changes too. | ||||
* | Breaking ground for PEP 3137 implementation: | Guido van Rossum | 2007-10-08 | 24 | -199/+72 |
| | | | | | | Get rid of buffer(). Use memoryview() in its place where possible. In a few places, do things a bit different, because memoryview() can't slice (yet). | ||||
* | Fix a minor typo. | Brett Cannon | 2007-10-07 | 1 | -1/+1 |
| | |||||
* | At least one of the buildbots was complaining about newview being used | Neal Norwitz | 2007-10-07 | 1 | -3/+2 |
| | | | | | without being initialized. Also make the code conform to the comment and return the new object. This code needs a test! | ||||
* | Merge 58344: allow BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module | Gregory P. Smith | 2007-10-06 | 1 | -5/+13 |
| | |||||
* | Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. | Gregory P. Smith | 2007-10-06 | 1 | -1/+7 |
| | |||||
* | Get the doc to build. | Neal Norwitz | 2007-10-02 | 1 | -2/+2 |
| | |||||
* | #1219: py3k cleanup in standard types docs. | Georg Brandl | 2007-09-28 | 1 | -129/+103 |
| | |||||
* | #1211, #1212, #1213: py3k fixes to the tutorial. | Georg Brandl | 2007-09-28 | 4 | -48/+43 |
| | |||||
* | Make byext.py really work. | Guido van Rossum | 2007-09-27 | 1 | -7/+5 |
| | |||||
* | Revert r58075 (incorrect docs patch). | Collin Winter | 2007-09-27 | 1 | -2/+2 |
| | |||||
* | Patch # 1145 by Thomas Lee: | Guido van Rossum | 2007-09-27 | 5 | -16/+28 |
| | | | | | | str.join(...) now applies str() to the sequence elements if they're not strings alraedy, except for bytes, which still raise TypeError (for the same reasons why ""==b"" raises it). | ||||
* | Clarify the difference between text and binary files. I'm not sure the | Skip Montanaro | 2007-09-26 | 1 | -8/+14 |
| | | | | tutorial is the right place to mention a file object's encoding. | ||||
* | Whitespace and line lengrth cleanup. | Guido van Rossum | 2007-09-25 | 1 | -47/+50 |
| | |||||
* | Delete now-unused static function Array_ass_slice(). | Guido van Rossum | 2007-09-25 | 1 | -42/+0 |
| | |||||
* | Fix a straggler filter() call. | Guido van Rossum | 2007-09-25 | 1 | -1/+1 |
| | |||||
* | #1189: documentation for tp_as_* structs. | Georg Brandl | 2007-09-24 | 1 | -15/+166 |
| | |||||
* | Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming | Thomas Heller | 2007-09-24 | 2 | -39/+39 |
| | | | | PyBuffer into Py_buffer. | ||||
* | Update the documentation of the open() builtin function a bit. I believe I | Skip Montanaro | 2007-09-23 | 1 | -26/+24 |
| | | | | | | mostly got the distinction between text and binary modes correct, though someone should proofread my writing. I also sort of guessed at the meaning of the various index:: entries. | ||||
* | Reformat the open function text so it fits within 80 columns in preparation | Skip Montanaro | 2007-09-23 | 1 | -37/+41 |
| | | | | | for a bit of rewriting. Separating the reformatting from the rewriting should make it easier for people to review the substantive changes. | ||||
* | Fix turtle module: None and int are not comparable, map returns an iterator. | Georg Brandl | 2007-09-23 | 1 | -5/+5 |
| | |||||
* | Change PyBuffer to Py_buffer to be consistent with other non-object ↵ | Travis E. Oliphant | 2007-09-23 | 16 | -85/+145 |
| | | | | structures like Py_complex. Add some more functionality to the memoryview object. | ||||
* | Use an enum for decoding_state. It makes the code a little more | Neil Schemenauer | 2007-09-21 | 2 | -12/+18 |
| | | | | understandable. | ||||
* | Remove more cruft leftover from nb_coerce. Rename nb_coerce to | Neil Schemenauer | 2007-09-21 | 15 | -66/+20 |
| | | | | nb_reserved. |