- 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 17 years ago
- df70e05 C89 compliance: Microsoft compilers want variable declarations at the top by Amaury Forgeot d'Arc · 17 years ago
- 7f23d86 Initialize PyCompilerFlags cf_flags with 0 by Christian Heimes · 17 years ago
- 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 17 years ago
- 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
- d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
- 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 17 years ago
- a113bd9 Added quick hack for bzr by Christian Heimes · 17 years ago
- 6a453c3 Added quick hack for bzr by Christian Heimes · 17 years ago
- ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 17 years ago
- 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 17 years ago
- 10dca6e The filter() function does support a None argument in Py3.0. by Raymond Hettinger · 17 years ago
- a4d7789 Issue #2400: Allow relative imports to "import *". by Martin v. Löwis · 17 years ago
- 7c47894 Backport of the print function, using a __future__ import. by Eric Smith · 17 years ago
- 8e6ec2f Added a warning when -3 is enabled and None is passed to filter as the first argument. by David Wolever · 17 years ago
- 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 17 years ago
- 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 17 years ago
- aa5778d Remove our implementation of memmove() and strerror(); both are in the C89 by Brett Cannon · 17 years ago
- 20bda58 Clean up the Py3k warnings for non-BaseException-subclasses a bit. We by Guido van Rossum · 17 years ago
- 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 17 years ago
- 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
- 5c35a9d Reformated lines > 79 chars. Deleted unused macro ISXDIGIT. by Eric Smith · 17 years ago
- 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 17 years ago
- 5becac5 Handle memory allocation failure. Found by Adam Olsen by Neal Norwitz · 17 years ago
- 400aeda Add a warning for code like: assert (0, 'message') by Neal Norwitz · 17 years ago
- 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 17 years ago
- d21fb4c Issue#2238: some syntax errors from *args or **kwargs expressions by Amaury Forgeot d'Arc · 17 years ago
- 9063a99 compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in by Jeffrey Yasskin · 17 years ago
- 189b6d8 More copyright year and version number bumps by Barry Warsaw · 17 years ago
- ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
- df6ac3d Whitespace normalization by Neal Norwitz · 17 years ago
- 0031ff3 Fix indentation by Neal Norwitz · 17 years ago
- b93e7d1 Add a little info to the 3k deprecation warnings about what to use instead. by Neal Norwitz · 17 years ago
- 53152a1 map(None, ...) is not supported in 3.0. by Neal Norwitz · 17 years ago
- 5e8e6d2 MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short. by Christian Heimes · 17 years ago
- 4034685 Issue #2051 and patch from Alexander Belopolsky: by Christian Heimes · 17 years ago
- 8328bbc Removed duplicate Py_CHARMASK define. It's already defined in Python.h. by Eric Smith · 17 years ago
- 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
- 3cd8194 Added bin() builtin. I'm going to check in the tests in a seperate checkin, because the builtin doesn't need to be ported to py3k, but the tests are missing in py3k and need to be merged there. by Eric Smith · 17 years ago
- 7ef40bf Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description). by Eric Smith · 17 years ago
- 5299935 Perform correct handling of stack overflow for windows: Catch the correct exception code and reset the overflow condition when handled. by Kristján Valur Jónsson · 17 years ago
- a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
- f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 17 years ago
- 687af0d Remove unnecessary curly braces around an int literal. by Brett Cannon · 17 years ago
- a6c41bc Cast a struct to a void pointer so as to do a type-safe pointer comparison by Brett Cannon · 17 years ago
- 99af7db Change r60575 broke test_compile: by Amaury Forgeot d'Arc · 17 years ago
- 6fd03bb #1750076: Debugger did not step on every iteration of a while statement. by Amaury Forgeot d'Arc · 17 years ago
- 422051a Patch #1953 by Christian Heimes · 17 years ago
- fb43d1e Fix refleak by Neal Norwitz · 17 years ago
- ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 17 years ago
- 105be77 Issue #1678380. Fix a bug that identifies 0j and -0j when they appear by Mark Dickinson · 17 years ago
- 796fc31 The previous change was causing a segfault after multiple calls to Py_Initialize() and Py_Finalize(). by Christian Heimes · 17 years ago
- 0d92443 Fixed some references leaks in sys. by Christian Heimes · 17 years ago
- 67ac066 Removed unused var by Christian Heimes · 17 years ago
- 867558a CallMethod is faster with a NULL third-argument than with an empty format string. by Raymond Hettinger · 17 years ago
- bf3d1d5 Removed unnecessary conditional (spotted by Neal Norwitz). by Raymond Hettinger · 17 years ago
- 52716c9 Let marshal built-up sets and frozensets one element at a time (without creating an intermediate tuple). by Raymond Hettinger · 17 years ago
- d7e1b2b static PyObject* variables should use PyString_InternFromString() instead of PyObject_FromString() to store a python string in a function level static var. by Christian Heimes · 17 years ago
- 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
- 8250fbe Reduce buffer size since we do not need 1k by Neal Norwitz · 17 years ago
- dee3f65 Revert PySet_Add() changes. by Raymond Hettinger · 17 years ago
- b423f02 Let marshal build-up sets and frozensets one element at a time. by Raymond Hettinger · 17 years ago
- 16570f5 #1920: when considering a block starting by "while 0", the compiler optimized the by Amaury Forgeot d'Arc · 17 years ago
- 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
- b2302ba Applied #1069410 by Christian Heimes · 17 years ago
- 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 17 years ago
- 2778c99 Provide a sanity check during PyThreadState_DeleteCurrent() and by Gregory P. Smith · 17 years ago
- 4872351 Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite function is not called isfinite() but finite(). Sorry, my fault. :) by Christian Heimes · 17 years ago
- 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 17 years ago
- 14404b6 Fix #1679: "0x" was taken as a valid integer literal. by Georg Brandl · 17 years ago
- c211a0a #1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje Nikšić. by Georg Brandl · 17 years ago
- 288e89a Added bytes and b'' as aliases for str and '' by Christian Heimes · 17 years ago
- 3e8c897 Coverity issue CID #169 by Christian Heimes · 17 years ago
- 7ce9b18 Typo fixes by Andrew M. Kuchling · 17 years ago
- f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 17 years ago
- 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 17 years ago
- dfe5dc8 Make Python compile with --disable-unicode. by Georg Brandl · 17 years ago
- aed6c66 patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. by Georg Brandl · 17 years ago
- 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
- 882ed55 #1755: typo. by Georg Brandl · 17 years ago
- 9fcd8ce Fix C++-style comment. by Georg Brandl · 17 years ago
- 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
- 3b83549 Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000 by Guido van Rossum · 17 years ago
- 123d5c9 Moved include "Python.h" in front of other imports to silence a warning. by Christian Heimes · 17 years ago
- e0b7695 Partial port of r59682 from py3k. by Amaury Forgeot d'Arc · 17 years ago
- 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
- 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
- 01dbc10 Improve performance of built-in any()/all() by avoiding PyIter_Next() -- by Guido van Rossum · 17 years ago
- dff1fd9 Add comments by Raymond Hettinger · 17 years ago
- 70fcfd0 Bigger range for non-extended opargs. by Raymond Hettinger · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- eca2743 Zap a duplicate line by Raymond Hettinger · 17 years ago
- 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 17 years ago
- fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
- effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
- 52729ac Silence a warning about an unsed variable in debug builds by Christian Heimes · 17 years ago
- 4e3ebe0 Note that open() is the preferred way to open files (issue 1510). by Skip Montanaro · 17 years ago
- 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
- 2d3953b Fix typo. by Georg Brandl · 17 years ago
- ef01d82 Implement PEP 366 by Nick Coghlan · 17 years ago