Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
03d3abf3755274358ed6f3aeeae273a2779b27bb
/
Python
f75dbef
Deallocate content of the dict free list on interpreter shutdown
by Christian Heimes
· 18 years ago
687af0d
Remove unnecessary curly braces around an int literal.
by Brett Cannon
· 18 years ago
a6c41bc
Cast a struct to a void pointer so as to do a type-safe pointer comparison
by Brett Cannon
· 18 years ago
99af7db
Change r60575 broke test_compile:
by Amaury Forgeot d'Arc
· 18 years ago
6fd03bb
#1750076: Debugger did not step on every iteration of a while statement.
by Amaury Forgeot d'Arc
· 18 years ago
422051a
Patch #1953
by Christian Heimes
· 18 years ago
fb43d1e
Fix refleak
by Neal Norwitz
· 18 years ago
ca2b69f
Move __builtins__.trunc() to math.trunc() per
by Jeffrey Yasskin
· 18 years ago
105be77
Issue #1678380. Fix a bug that identifies 0j and -0j when they appear
by Mark Dickinson
· 18 years ago
796fc31
The previous change was causing a segfault after multiple calls to Py_Initialize() and Py_Finalize().
by Christian Heimes
· 18 years ago
0d92443
Fixed some references leaks in sys.
by Christian Heimes
· 18 years ago
67ac066
Removed unused var
by Christian Heimes
· 18 years ago
867558a
CallMethod is faster with a NULL third-argument than with an empty format string.
by Raymond Hettinger
· 18 years ago
bf3d1d5
Removed unnecessary conditional (spotted by Neal Norwitz).
by Raymond Hettinger
· 18 years ago
52716c9
Let marshal built-up sets and frozensets one element at a time (without creating an intermediate tuple).
by Raymond Hettinger
· 18 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
· 18 years ago
908caac
Added clear cache methods to clear the internal type lookup cache for ref leak test runs.
by Christian Heimes
· 18 years ago
8250fbe
Reduce buffer size since we do not need 1k
by Neal Norwitz
· 18 years ago
dee3f65
Revert PySet_Add() changes.
by Raymond Hettinger
· 18 years ago
b423f02
Let marshal build-up sets and frozensets one element at a time.
by Raymond Hettinger
· 18 years ago
16570f5
#1920: when considering a block starting by "while 0", the compiler optimized the
by Amaury Forgeot d'Arc
· 18 years ago
1d9a9ea
Fix two crashers.
by Guido van Rossum
· 18 years ago
b2302ba
Applied #1069410
by Christian Heimes
· 18 years ago
32a3fb5
Patch #1720595: add T_BOOL to the range of structmember types.
by Georg Brandl
· 18 years ago
2778c99
Provide a sanity check during PyThreadState_DeleteCurrent() and
by Gregory P. Smith
· 18 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
· 18 years ago
5611289
#1648: add sys.gettrace() and sys.getprofile().
by Georg Brandl
· 18 years ago
14404b6
Fix #1679: "0x" was taken as a valid integer literal.
by Georg Brandl
· 18 years ago
c211a0a
#1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje Nikšić.
by Georg Brandl
· 18 years ago
288e89a
Added bytes and b'' as aliases for str and ''
by Christian Heimes
· 18 years ago
3e8c897
Coverity issue CID #169
by Christian Heimes
· 18 years ago
7ce9b18
Typo fixes
by Andrew M. Kuchling
· 18 years ago
f31b69f
Applied patch #1816: sys.flags patch
by Christian Heimes
· 18 years ago
3403f15
Fixed #1776. __import__() no longer imports modules by file name
by Christian Heimes
· 18 years ago
dfe5dc8
Make Python compile with --disable-unicode.
by Georg Brandl
· 18 years ago
aed6c66
patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.
by Georg Brandl
· 18 years ago
2da0fce
Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode.
by Georg Brandl
· 18 years ago
882ed55
#1755: typo.
by Georg Brandl
· 18 years ago
9fcd8ce
Fix C++-style comment.
by Georg Brandl
· 18 years ago
9871d8f
Continue rolling back pep-3141 changes that changed behavior from 2.5. This
by Jeffrey Yasskin
· 18 years ago
3b83549
Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000
by Guido van Rossum
· 18 years ago
123d5c9
Moved include "Python.h" in front of other imports to silence a warning.
by Christian Heimes
· 18 years ago
e0b7695
Partial port of r59682 from py3k.
by Amaury Forgeot d'Arc
· 18 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
· 18 years ago
2f3c16b
Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just
by Jeffrey Yasskin
· 18 years ago
01dbc10
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
by Guido van Rossum
· 18 years ago
dff1fd9
Add comments
by Raymond Hettinger
· 18 years ago
70fcfd0
Bigger range for non-extended opargs.
by Raymond Hettinger
· 18 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
· 18 years ago
eca2743
Zap a duplicate line
by Raymond Hettinger
· 18 years ago
0a8143f
Applied patch #1635: Float patch for inf and nan on Windows (and other platforms).
by Christian Heimes
· 18 years ago
fd7ed40
Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.
by Raymond Hettinger
· 18 years ago
effde12
Speed-up dictionary constructor by about 10%.
by Raymond Hettinger
· 18 years ago
52729ac
Silence a warning about an unsed variable in debug builds
by Christian Heimes
· 18 years ago
4e3ebe0
Note that open() is the preferred way to open files (issue 1510).
by Skip Montanaro
· 18 years ago
4e2f714
Fix Issue 1045.
by Raymond Hettinger
· 18 years ago
2d3953b
Fix typo.
by Georg Brandl
· 18 years ago
ef01d82
Implement PEP 366
by Nick Coghlan
· 18 years ago
dfdfaab
Feature #1534
by Christian Heimes
· 18 years ago
dafd32b
Issue #1521: on 64bit platforms, str.decode fails on very long strings.
by Amaury Forgeot d'Arc
· 18 years ago
025c347
Issue #1402: PyInterpreterState_Clear() may still invoke user code
by Amaury Forgeot d'Arc
· 18 years ago
28104c5
Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504
by Christian Heimes
· 18 years ago
ffcd1e1
Added filename to compiling struct based on Martin's suggestion.
by Christian Heimes
· 18 years ago
6d8fb1a
And yet another fix for the patch. Paul Moore has send me a note that I've missed a declaration. The additional code has moved the declaration in the middle of the block.
by Christian Heimes
· 18 years ago
e36fe53
How did the comment get there?
by Christian Heimes
· 18 years ago
02c9ab5
Fixed problems in the last commit. Filenames and line numbers weren't reported correctly.
by Christian Heimes
· 18 years ago
729ab15
Applied patch #1754273 and #1754271 from Thomas Glee
by Christian Heimes
· 18 years ago
e8954f8
Backport of the PCbuild9 directory from the py3k branch.
by Christian Heimes
· 18 years ago
327a39b
Patch #1739468: Directories and zipfiles containing __main__.py are now executable
by Nick Coghlan
· 18 years ago
0d75f09
Merge from py3k branch:
by Amaury Forgeot d'Arc
· 18 years ago
63bf149
Patch #1418: Make the AC_REPLACE_FUNCS object files actually work.
by Martin v. Löwis
· 18 years ago
004c1c1
Backport of Guido's review of my patch.
by Christian Heimes
· 18 years ago
cea681b
Backported fix for bug #1392 from py3k branch r58903.
by Christian Heimes
· 18 years ago
dc1d1ba
Add build option for faster loop execution.
by Raymond Hettinger
· 18 years ago
12e9420
Fix marshal's incorrect handling of subclasses of builtin types (backport candidate).
by Raymond Hettinger
· 18 years ago
a45c487
Missing DECREFs
by Raymond Hettinger
· 18 years ago
3a8daf5
Fixup error return and add support for intermixed ints and floats/
by Raymond Hettinger
· 18 years ago
3f8caa3
Optimize sum() for integer and float inputs.
by Raymond Hettinger
· 18 years ago
15f2661
Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory
by Neal Norwitz
· 18 years ago
3adac21
Fix Coverity #158: Check the correct variable.
by Neal Norwitz
· 18 years ago
e217602
Try harder to stay within the 79-column limit. There's still two places that go (way) over, but those are harder to fix without suffering in readability.
by Thomas Wouters
· 18 years ago
ae406c6
Whitespace cleanup.
by Thomas Wouters
· 18 years ago
5a5bc7b
Fix #1169: remove docstrings in functions for -OO.
by Georg Brandl
· 18 years ago
1e534b5
Fix a crasher where Python code managed to infinitely recurse in C code without
by Brett Cannon
· 18 years ago
b90f52e
Revert compile.c changes that shouldn't have been included in previous checkin
by Nick Coghlan
· 18 years ago
3af0e78
Revert misguided attempt at fixing incompatibility between -m and -i switches (better fix coming soon)
by Nick Coghlan
· 18 years ago
add36e5
Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYNAMIC_LOADING is not defined.
by Georg Brandl
· 18 years ago
d8672aa
Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code
by Alex Martelli
· 18 years ago
d7e9f60
Revert accidental checkins from last commit.
by Georg Brandl
· 18 years ago
fdca6d8
Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.
by Georg Brandl
· 18 years ago
69ff5ac
Place #ifdef Py_USING_UNICODE around decode_unicode().
by Georg Brandl
· 18 years ago
2ef7582
Handle errors when generating a warning.
by Neal Norwitz
· 18 years ago
6819210
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
by Martin v. Löwis
· 18 years ago
b6ac23c
SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors.
by Guido van Rossum
· 18 years ago
84a3efe
Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members.
by Walter Dörwald
· 18 years ago
6371cd8
Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5.
by Martin v. Löwis
· 18 years ago
080b598
Use macro version of GET_SIZE to avoid Coverity warning (#150) about a possible error.
by Neal Norwitz
· 18 years ago
e06cf45
Disallow function calls like foo(None=1).
by Georg Brandl
· 18 years ago
a5ea689
Bug #1722484: remove docstrings again when running with -OO.
by Georg Brandl
· 18 years ago
2fca81c
Fix indentation (whitespace only).
by Neal Norwitz
· 18 years ago
Next »