494 Commits (090f7be6dfd4e246cf5bc2db24c2070810d3c98b)

Author SHA1 Message Date
Ezio Melotti 3c76aa6b23 Remove unused variabile "plain" in builtin_exec. 13 years ago
Stefan Krah 07795df683 Issue #15741: Fix potential NULL dereference. Found by Coverity. 14 years ago
Antoine Pitrou 6f430e4963 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. 14 years ago
Benjamin Peterson 8e8fbeae27 don't leak if the __class__ closure is set 14 years ago
Benjamin Peterson 0010256de4 fold into one if statement 14 years ago
Benjamin Peterson a12d5c62f7 fix formatting 14 years ago
Antoine Pitrou 0d776b1ce8 Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode 14 years ago
Florent Xicluna 4d46c2a722 Remove unused variable. 14 years ago
Nick Coghlan de31b191e5 Issue 1294232: Fix errors in metaclass calculation affecting some cases of metaclass inheritance. Patch by Daniel Urban. 14 years ago
Alexander Belopolsky 12338ab10b Removed 'or long integer' from bin, oct, and hex docstrings. 15 years ago
Victor Stinner 02bfdb3f79 Merged revisions 88530 via svnmerge from 15 years ago
Georg Brandl 8334fd9285 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. 15 years ago
Martin v. Löwis 4d0d471a80 Merge branches/pep-0384. 15 years ago
Georg Brandl e5b99f0fb3 Remove redundant includes of headers that are already included by Python.h. 15 years ago
Antoine Pitrou e71362d3de Issue #10518: Bring back the callable() builtin. 15 years ago
Victor Stinner 15244f7b12 Recorded merge of revisions 85569-85570 via svnmerge from 15 years ago
Benjamin Peterson 8f67d0893f make hashes always the size of pointers; introduce Py_hash_t #9778 15 years ago
Victor Stinner 4c7c8c3023 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects 15 years ago
Brett Cannon 5305a998d5 Since __import__ is not designed for general use, have its docstring point 15 years ago
Victor Stinner 5b519e0201 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING 16 years ago
Benjamin Peterson 17689991e6 only catch AttributeError in hasattr() #9666 16 years ago
Victor Stinner 306f0100f3 Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogate 16 years ago
Victor Stinner b744ba1d14 Issue #8610: Load file system codec at startup, and display a fatal error on 16 years ago
Antoine Pitrou 7f14f0d8a0 Recorded merge of revisions 81032 via svnmerge from 16 years ago
Antoine Pitrou f95a1b3c53 Recorded merge of revisions 81029 via svnmerge from 16 years ago
Victor Stinner d8805b2bb8 Merged revisions 79393 via svnmerge from 16 years ago
Victor Stinner 120c21227a Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding 16 years ago
Benjamin Peterson 1ca73ede26 Merged revisions 78505-78506 via svnmerge from 16 years ago
Benjamin Peterson 09259e2043 check PyDict_New() for error 16 years ago
Benjamin Peterson 23e018ab98 only accept AttributeError as indicating no __prepare__ attribute on a metaclass, allowing lookup errors to propogate 16 years ago
Mark Dickinson 188aace8d8 Merged revisions 76902 via svnmerge from 16 years ago
Mark Dickinson 480e8e38a0 Fix typo (reported by terlop on IRC) 16 years ago
Benjamin Peterson fc431270ac Merged revisions 76776 via svnmerge from 16 years ago
Benjamin Peterson 97dd987ae2 Merged revisions 76534,76538,76628,76701,76774 via svnmerge from 16 years ago
Mark Dickinson 9acadc54e0 Merged revisions 75714 via svnmerge from 16 years ago
Skip Montanaro ba1e0f46ab Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) 16 years ago
Benjamin Peterson c963731bb6 refactor logic a little when no sep or end is passed 17 years ago
Benjamin Peterson 8bc5b68159 these builtins have to be initialized 17 years ago
Benjamin Peterson f5b52246ed ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 17 years ago
Mark Dickinson e94c679df0 Issue #1717: rename tp_compare to tp_reserved. I'll change the 17 years ago
Mark Dickinson f02e0aaafd Issue #1717: remove the cmp builtin function, the C-API functions 17 years ago
Mark Dickinson 1124e71368 Issue #4707: round(x, n) now returns an integer when x is an integer. 17 years ago
Amaury Forgeot d'Arc f343e01c17 Merged revisions 68560 via svnmerge from 17 years ago
Raymond Hettinger 5d1ff00bc0 Mini-optimization: use pack/unpack functions for argument tuples. 17 years ago
Benjamin Peterson 3809026a72 #4826 exec() doesn't take a file object anymore 17 years ago
Georg Brandl ced51db8cf #4513: remove traces of zip() docstring from when it was izip(). 17 years ago
Christian Heimes 6a27efa2d3 Issue 3723: Fixed initialization of subinterpreters 17 years ago
Martin v. Löwis 04dc25c537 Issue #3187: Add sys.setfilesystemencoding. 17 years ago
Amaury Forgeot d'Arc d0db98fcd8 #1688: On Windows, the input() prompt was not correctly displayed if it 18 years ago
Georg Brandl 2cabc56296 #3706: fix error message for wrong exec() argument type. R=Guido. 18 years ago