2001-08-24 |
Guido van Rossum | Remove the local 'getset' class -- this is now a built... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | getset_init(): the function name in the PyArg_ParseTupl... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Improve the error message issued when an unbound method... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Barry Warsaw | Rip the import repr truncation test out of here and... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Barry Warsaw | Added lots of tests for reprs of "simple" objects,... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Barry Warsaw | PyErr_Format(): Factor out most of this code into |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Barry Warsaw | repr's converted to using PyString_FromFormat() instead... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Barry Warsaw | PyString_FromFormat() and PyString_FromFormatV(): Large... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Tim Peters | Repair repr of future-features (wasn't updated to inclu... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | supers(): typo -- "if verify" should be "if verbose". |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Add test suite for super(). |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Add 'super' builtin type. |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Add decl of PySuper_Type; fixup comments for the two... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Add 'super', another new object type with magical prope... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Add a test for the new getset type. |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | Change the getset type to take an optional third functi... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | SF patch #454553 by Walter Dörwald: add content-type... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | getset_descr_set(): guard against deletion (indicated... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | slot_tp_descr_get(): guard against NULL obj or type... |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Guido van Rossum | getset_init(): make the arguments optional. |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Jack Jansen | Last renamed module that wasn't removed yet. |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Tim Peters | Back out trying to use the C values for CO_xxx. |
commit | commitdiff | tree | snapshot |
2001-08-24 |
Tim Peters | Looks like someone forgot the change the expected outpu... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Tim Peters | Add a test for the new // operator too. |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Tim Peters | SF bug [#454456] int overflow code needs tests. |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Tim Peters | float_pow: Put *all* of the burden on the libm pow... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | Add new built-in type 'getset' (PyGetSet_Type). |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | err_ovf(): only raise OverflowError when OverflowWarnin... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Tim Peters | int_pow(): Repair typo when passing on to float pow... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Greg Ward | Patch #449054 to implement PEP 250. The standard insta... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Tim Peters | Remove test_long's expected-output file. |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Fredrik Lundh | untabification |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Fredrik Lundh | updated to current PythonWare version (1.0b3). fixed... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Finn Bock | Committing and closing SF patch #441348 to help Jython... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Barry Warsaw | Bump to version 1.3. Also document the new behavior... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Barry Warsaw | Bump to version 1.3 |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Barry Warsaw | Implement some suggestions by Laura Creighton. |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | Wrapper modules underound the toolbox modules, which... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | Renamed. |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | Renamed the Mac toolbox modules to have an initial... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | Mac toolbox modules have gotten an _ prepended to their... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | The MacOS toolbox modules have acquired an _ in front... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | SF patch #454553 by Walter Dörwald: auto-guess content... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | Don't make even the _slightest_ modification between... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Jack Jansen | The MacOS module may be available on Mac OS X, but... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | Turn OverflowWarning into an error locally, in order... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | Ignore OverflowWarning by default. To enable the warni... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | Change all case where we used to raise OverflowError... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | When an inlined operation on two small ints causes... |
commit | commitdiff | tree | snapshot |
2001-08-23 |
Guido van Rossum | Introduce OverflowWarning -- to be issued when short... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Tim Peters | Add pynche's top-level txt files to Windows installer... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Tim Peters | "The usual" post-release fiddling. |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Barry Warsaw | Add an item about Tim's new installer. This didn't... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Barry Warsaw | Merge changes from r22a2-branch back into trunk. Also... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Skip Montanaro | indicate that mktime is platform-dependent. See SF... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Skip Montanaro | indicate that the years for which the calendar function... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Skip Montanaro | make the gettmarg error message more correct by making... |
commit | commitdiff | tree | snapshot |
2001-08-22 |
Barry Warsaw | More NEWS for 2.2a2. |
commit | commitdiff | tree | snapshot |
2001-08-21 |
Jack Jansen | Added a note about --enable-framework on Mac OS X. |
commit | commitdiff | tree | snapshot |
2001-08-21 |
Jack Jansen | These long dead files somehow got revived. Killed them... |
commit | commitdiff | tree | snapshot |
2001-08-21 |
Jack Jansen | This file has been dead for aeons. I have no idea how... |
commit | commitdiff | tree | snapshot |
2001-08-21 |
Ka-Ping Yee | Enhancements: |
commit | commitdiff | tree | snapshot |
2001-08-21 |
Skip Montanaro | This is supposed to help configure better sort out... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Barry Warsaw | A test of SSL support, using a roundabout method sugges... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Barry Warsaw | Use test_support.requires() to decide whether additiona... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Barry Warsaw | Removed --have-resources flag in favor of the more... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Barry Warsaw | use_large_resources => use_resources |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Barry Warsaw | SSL_dealloc(): Apply the change suggested in SF bug... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Tim Peters | Whitespace normalization. |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Tim Peters | Test failed because these was no expected-output file... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Fred Drake | New \grammartoken markup, similar to \token but allowed... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Fred Drake | Add another name. |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Fred Drake | Deal more appropriately with bare ampersands and pointy... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jeremy Hylton | Add test case to cover multiple future statements on... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jeremy Hylton | Fix SF bug [ #450245 ] Error in parsing future stmts |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jeremy Hylton | Fix SF bug [ #450245 ] Error in parsing future stmts |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Barry Warsaw | Committing and closing SF patch #403671 by Finn Bock... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Skip Montanaro | add a few test cases for threading module. |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Skip Montanaro | Added new BoundedSemaphore class. Closes bug 452836. |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jeremy Hylton | Silence warnings during test_os |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Fred Drake | Split "Extending & Embedding" into separate files,... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jeremy Hylton | It will always be a string, because it is created just... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Fred Drake | Added documentation for BoundedSemaphore(), contributed... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Fred Drake | Document PyTuple_GET_SIZE(), removing confusing sentenc... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jack Jansen | Oops, these compatibility modules were missing. Which... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jack Jansen | Various toolbox modules were generated in lib-dynload... |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Eric S. Raymond | Clean up some argument profiles, enrich the docstring. |
commit | commitdiff | tree | snapshot |
2001-08-20 |
Jack Jansen | Oops, this file shouldn't have been removed. |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | The destination folder is now :Lib:lib-dynload |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | PATCHLEVEL is outdated, use PY_VERSION. |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Step 1 in packaging the toolbox modules and making... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Dynamic modules are now put in :Lib:lib-dynload by... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Compatibility modules. lib-compat is on the default... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Moved to either :Mac:Lib (WASTEconst and files that... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | The modules with toolbox constants. |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Carbon is now a package encapsulating all the toolbox... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Moved here form lib-toolbox, for lack of a better place... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Moved here from lib-toolbox, where they should never... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Step 1 in packaging the toolbox modules and making... |
commit | commitdiff | tree | snapshot |
2001-08-19 |
Jack Jansen | Temporarily disabled the import hook. It breaks with... |
commit | commitdiff | tree | snapshot |
next |