index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add os.path.supports_unicode_filenames for all platforms,
Mark Hammond
2002-10-08
1
-0/+37
*
s/_alloca/alloca/g; Windows doesn't need the former, at least not unless
Tim Peters
2002-10-05
1
-2/+2
*
Patch #618347: Work around Solaris 2.6 pthread.h bug. Will backport to 2.2.
Martin v. Löwis
2002-10-04
1
-2/+2
*
Fix [ 616716 ] Bug in PyErr_SetExcFromWindows
Mark Hammond
2002-10-04
1
-9/+28
*
Fix errors to pep277 checkin identified by Neal Norwitz.
Mark Hammond
2002-10-04
1
-3/+3
*
One last tweak to the tracing machinery: this actually computes what I intended
Michael W. Hudson
2002-10-03
1
-1/+3
*
Clamp code objects' tp_compare result to [-1, 1].
Michael W. Hudson
2002-10-03
1
-3/+3
*
Patch 594001: PEP 277 - Unicode file name support for Windows NT.
Mark Hammond
2002-10-03
1
-10/+82
*
Fix for the recursion_level bug Armin Rigo reported in sf
Michael W. Hudson
2002-10-02
1
-0/+4
*
Add encoding name in LookupError. Fixes #615013. Will backport to 2.2.
Martin v. Löwis
2002-09-26
1
-2/+2
*
Two more cases of switch(PySequence_Size()) without checking for case -1.
Neal Norwitz
2002-09-18
1
-0/+7
*
Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz).
Guido van Rossum
2002-09-18
1
-0/+3
*
A slight change to SET_LINENO-less tracing.
Michael W. Hudson
2002-09-11
1
-5/+18
*
missed this one on the previous multi-file checkin - see
Skip Montanaro
2002-09-03
1
-2/+0
*
Add a custom __str__ method to KeyError that applies repr() to the
Guido van Rossum
2002-09-03
1
-2/+40
*
Bump default check interval to 100 instructions. Computers are much faster
Skip Montanaro
2002-09-03
1
-2/+2
*
replace thread state objects' ticker and checkinterval fields with two
Skip Montanaro
2002-09-03
2
-4/+9
*
expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456.
Skip Montanaro
2002-09-03
1
-0/+3
*
Check string for NULL before using it to format the error message.
Walter Dörwald
2002-09-02
1
-3/+6
*
Removed bogus PyUnicodeTranslateError_GetEncoding, as
Walter Dörwald
2002-09-02
1
-5/+0
*
Limit the length of attribute names in exception messages
Walter Dörwald
2002-09-02
1
-3/+3
*
PEP 293 implemention (from SF patch http://www.python.org/sf/432401)
Walter Dörwald
2002-09-02
2
-0/+1002
*
Because MWH changed the bytecode again, moved the magic number *back*
Guido van Rossum
2002-08-31
1
-1/+6
*
Further SET_LINENO reomval fixes. See comments in patch #587933.
Michael W. Hudson
2002-08-30
2
-37/+32
*
execfile should call PyErr_SetFromErrnoWithFilename instead of
Peter Schneider-Kamp
2002-08-27
1
-1/+1
*
Fix a couple of whitespace consistency nits.
Fred Drake
2002-08-26
1
-2/+2
*
Simplify, and avoid PyModule_GetDict() while we're at it.
Fred Drake
2002-08-26
1
-5/+2
*
The error messages in err_args() -- which is only called when the
Guido van Rossum
2002-08-23
1
-2/+2
*
Comment typo repair.
Michael W. Hudson
2002-08-20
1
-1/+1
*
My patch #597221. Use f_lasti more consistently.
Michael W. Hudson
2002-08-20
1
-9/+9
*
Add a warning comment to the LOAD_GLOBAL inline code.
Guido van Rossum
2002-08-19
1
-1/+3
*
Another ugly inlining hack, expanding the two PyDict_GetItem() calls
Guido van Rossum
2002-08-19
1
-1/+25
*
Inline fast_cfunction() in new call_function().
Jeremy Hylton
2002-08-16
1
-55/+33
*
Move body of CALL_FUNCTION opcode into helper function.
Jeremy Hylton
2002-08-16
1
-54/+56
*
Streamline the fast track for CFunction calls a bit more: there was
Guido van Rossum
2002-08-16
1
-5/+2
*
A nice little speed-up for filter():
Guido van Rossum
2002-08-16
1
-13/+17
*
Add warnings for arguments named None. All set. (I could add a
Guido van Rossum
2002-08-16
1
-1/+9
*
Add warning for None used as keyword argument name in function call.
Guido van Rossum
2002-08-16
1
-0/+1
*
Add warnings for assignment or deletion of variables and attributes
Guido van Rossum
2002-08-16
1
-0/+27
*
Minor cleanup of parsename() and parsestr(): the 'struct compiling *'
Guido van Rossum
2002-08-16
1
-13/+13
*
This is my patch
Michael W. Hudson
2002-08-15
5
-78/+199
*
provide less mysterious error messages when seeing end-of-line in
Skip Montanaro
2002-08-15
1
-0/+6
*
Py_InitModule4(): Accept NULL for the 'methods' argument. This makes
Fred Drake
2002-08-14
1
-14/+16
*
Added a FutureWarning for constructs that will change semantically in
Barry Warsaw
2002-08-14
2
-2/+10
*
Patch #550192: Set softspace to 0 in raw_input().
Martin v. Löwis
2002-08-14
1
-18/+22
*
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis
2002-08-14
1
-98/+5
*
Use PyErr_WarnExplicit() to warn about hex/oct constants, so the
Guido van Rossum
2002-08-12
1
-4/+9
*
Reset errno to zero after calling PyErr_Warn(). It can potentially do
Guido van Rossum
2002-08-11
1
-0/+1
*
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
Marc-André Lemburg
2002-08-11
1
-34/+1
*
Implement stage B0 of PEP 237: add warnings for operations that
Guido van Rossum
2002-08-11
1
-1/+9
[next]