- 21 Eyl, 2000 14 kayıt (commit)
-
-
Fred Drake yazdı
support long tables which might break across page boundaries. Otherwise identical to tableii, tableiii, and tableiv.
-
Fred Drake yazdı
macros in the argument list position.
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
from the FreeBSD code.
-
Lars Gustäbel yazdı
-
Lars Gustäbel yazdı
-
Lars Gustäbel yazdı
-
Lars Gustäbel yazdı
-
Tim Peters yazdı
Don't ship debug .dll, .pyd or .lib files. Saves space. Bumped the title to beta 2.
-
Tim Peters yazdı
Note a curious extension to the std C rules: x, X and o formatting can never produce a sign character in C, so the '+' and ' ' flags are meaningless for them. But unbounded ints *can* produce a sign character under these conversions (no fixed- width bitstring is wide enough to hold all negative values in 2's-comp form). So these flags become meaningful in Python when formatting a Python long which is too big to fit in a C long. This required shuffling around existing code, which hacked x and X conversions to death when both the '#' and '0' flags were specified: the hacks weren't strong enough to deal with the simultaneous possibility of the ' ' or '+' flags too, since signs were always meaningless before for x and X conversions. Isomorphic shuffling was required in unicodeobject.c. Also added dozens of non-trivial new unbounded-int test cases to test_format.py.
-
Fred Drake yazdı
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
-
Fred Drake yazdı
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
-
Fred Drake yazdı
<lannert@uni-duesseldorf.de>.
-
Greg Ward yazdı
-
- 20 Eyl, 2000 9 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
once if all the temporary files are available from building a DVI file. This can avoid two runs of pdflatex.
-
Fred Drake yazdı
not as a user-controlled parameter.
-
Fred Drake yazdı
-
Fred Drake yazdı
sub-modules).
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
-
- 19 Eyl, 2000 17 kayıt (commit)
-
-
Greg Ward yazdı
resource files. The gist of the patch is to treat ".rc" and ".mc" files as source files; ".mc" files are compiled to ".rc" and then ".res", and ".rc" files are compiled to ".res". Wish I knew what all these things stood for...
-
Tim Peters yazdı
recent changes to ntpath.py and posixmodule.c. Thanks to Guido for pointing out the inconsistency!
-
Jack Jansen yazdı
Added GetArgs dialog to EasyDialogs, a very nifty (if I may say so:-) way to create a unix-style sys.argv.
-
Marc-André Lemburg yazdı
which implements the automatic conversion from Unicode to a string object using the default encoding. The new API is then put to use to have eval() and exec accept Unicode objects as code parameter. This closes bugs #110924 and #113890. As side-effect, the traditional C APIs PyString_Size() and PyString_AsString() will also accept Unicode objects as parameters.
-
Guido van Rossum yazdı
The cause was that the replace code necessarily used a PCRE internal function to to template expansion. The fix changes the code to use an SRE internal if SRE is used, and a PCRE internal if SRE is used; in a way that should work with 1.5.2. The solution can be sped up tremendously under the assumption that the choice between sre and pre is not changed during the execution of the program; especially replace-all will be slow. But I'll leave that to someone else.
-
Tim Peters yazdı
"a:b", not "a:/b". Similar change was made to posixmodule.c earlier.
-
Tim Peters yazdı
Added new test for new __contains__ method. Extensive editing to get rid of asserts.
-
Tim Peters yazdı
-
Paul Prescod yazdı
-
Fred Drake yazdı
Document the __contains__() method. (Patch slightly modified by FLD.) This closes SourceForge patch #101387.
-
Fred Drake yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Closes Bug #114775.
-
Fred Drake yazdı
off an existing anchor tag if available (I think it always is, but am not completely sure).
-
Fred Drake yazdı
discussion on python-dev.
-
Barry Warsaw yazdı
zip(None) tests. Found by Finn Bock a while ago.
-
Guido van Rossum yazdı
-