- 10 Nis, 2000 40 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
IRIX, it doesn't even compile. Added a cast: "where >= (char *)0".
-
Guido van Rossum yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
Add descriptions for the system variables.
-
Guido van Rossum yazdı
(everyone who said something remotely useful in the last 100 messages I archived has been added :-).
-
Fred Drake yazdı
are still C functions, and should be marked.
-
Fred Drake yazdı
Remove statement that the return value is always NULL; this is generated by the formatting.
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
Fix description; lowercase and uppercase are strings, not functions! Noted by Randall Hopper <aa8vb@yahoo.com>. maketrans(): Minor markup nits in description.
-
Fred Drake yazdı
PyObject* values.
-
Fred Drake yazdı
do_env_cfuncdesc(): Support the "null" value for the refcounts field in refcounts.dat.
-
Fred Drake yazdı
PyErr_SetFromErrno() should be "null".
-
Fred Drake yazdı
-
Fred Drake yazdı
reference count field, state that the return value is always NULL. (Useful for some PyErr_*() flavors.)
-
Fred Drake yazdı
When processing the optional parameter, don't append any text; let the pre-processor supply all of it.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Do it in the project file rather than in the source, so it's easier for Mark to change.
-
Fred Drake yazdı
of \dataline.
-
Guido van Rossum yazdı
[The test is in a slightly odd place, in test_division_2; but it exercises the recent change to long_mult(), and that's all we really ask for. --GvR]
-
Guido van Rossum yazdı
Kneler for reporting this issue: long_mult() is faster when the smaller argument is on the left. Swap the arguments accordingly.
-
Guido van Rossum yazdı
default list of files from () to None, and explicitly test for None before defaulting to sys.argv[1:]. This means that if you pass in an explicit empty list, it will read stdin instead of defaulting to sys.argv[1:]. This fixes a buglet in the test script (when called with options but without files, it chokes when it tries to interpret the options as files). Lawrence adds: "I suspect that this is a safe change, because I can't imagine someone actively passing in an empty list when they want sys.argv used." I agree.
-
Guido van Rossum yazdı
This one should work with unicode expressions, and compile a bit more silently.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Fredrik Lundh: add two missing casts.
-
Guido van Rossum yazdı
indentation (tabs only), rationalize some code in urljoin...
-
Guido van Rossum yazdı
built-in messages.
-
Fred Drake yazdı
allowing it to be run from anywhere, including through a symlink to the actual idle.py script.
-
Guido van Rossum yazdı
comparing code objects. This give sless surprising results in -Optimized code. It also sorts code objects by name, now. [I changed the patch to hash() slightly to touch fewer lines.]
-
Fred Drake yazdı
Instead of assuming that the number process ids of the threads is the same as the process id of the controlling process, use a copy of the dictionary and check for changes in the process ids of the threads from the thread's process ids in the parent process. This makes the test make more sense on systems which assign a new pid to each thread (i.e., Linux). This doesn't fix the other problems evident with this test on Linux.
-
Guido van Rossum yazdı
* '...%s...' % u"abc" now coerces to Unicode just like string methods. Care is taken not to reevaluate already formatted arguments -- only the first Unicode object appearing in the argument mapping is looked up twice. Added test cases for this to test_unicode.py.
-
Guido van Rossum yazdı
* More test cases for test_contains.py.
-
Guido van Rossum yazdı
* New exported API PyUnicode_Resize() * The experimental Keep-Alive optimization was turned back on after some tweaks to the implementation. It should now work without causing core dumps... this has yet to tested though (switching it off is easy: see the unicodeobject.c file for details). * Fixed a memory leak in the Unicode freelist cleanup code. * Added tests to correctly process the return code from _PyUnicode_Resize(). * Fixed a bug in the 'ignore' error handling routines of some builtin codecs. Added test cases for these to test_unicode.py.
-
Guido van Rossum yazdı
* string_contains now calls PyUnicode_Contains() only when the other operand is a Unicode string (not whenever it's not a string). * New format style '%r' inserts repr(arg) instead of str(arg). * '...%s...' % u"abc" now coerces to Unicode just like string methods. Care is taken not to reevaluate already formatted arguments -- only the first Unicode object appearing in the argument mapping is looked up twice. Added test cases for this to test_unicode.py.
-
Guido van Rossum yazdı
* TypeErrors during comparing of mixed type arguments including a Unicode object are now masked (just like they are for all other combinations).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
recently changed.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Greg Ward yazdı
to account for it not being defined in the constructor.
-