- 4626009 Added note about updated freeze.py Tool. by Marc-André Lemburg · 23 years ago
- 64b4f27 Updated freeze.py to the new Makefile symbol layout. by Marc-André Lemburg · 23 years ago
- 4783446 Add a note about bool. by Guido van Rossum · 23 years ago
- ce5df49 SF 539024, Fix broken link to numpy by Neal Norwitz · 23 years ago
- b7265db _PyMalloc_Realloc(): removed a now-pointless cast. by Tim Peters · 23 years ago
- 84c1b97 _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises about by Tim Peters · 23 years ago
- 243ea71 Correct the descriptions of the PyObject_As*Buffer() return values. by Fred Drake · 23 years ago
- 645a22e As Neal pointed out, bool_print was an order of magnitude too complex. by Guido van Rossum · 23 years ago
- b5080ab Repair the Windows build (needs to compile in the new boolobject code). by Tim Peters · 23 years ago
- 5f82036 Oops. Here are the new files. My apologies. by Guido van Rossum · 23 years ago
- 3a52ff6 Add empty section for bool by Andrew M. Kuchling · 23 years ago
- 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
- e9c0358 e macresource.need() to open the W resource file in the application init by Jack Jansen · 23 years ago
- 71cc46e Slight modernization. by Fred Drake · 23 years ago
- cd874ed Fix the names of the classmethod and staticmethod constructors as passed to by Fred Drake · 23 years ago
- a2bd8d3 Remove direct manipulation of the module dict. by Fred Drake · 23 years ago
- 8f3078b Got the example program to work in MachoPython. by Jack Jansen · 23 years ago
- b81fbad Updated PEP link to point to the now-canonical site. by Fred Drake · 23 years ago
- dbfe768 Update the PEP URL format to point to python.org. by Fred Drake · 23 years ago
- d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 23 years ago
- e7fefbf Fix bugs: by Mark Hammond · 23 years ago
- b0aaec5 Convert more METH_OLDARGS & PyArg_Parse() by Neal Norwitz · 23 years ago
- 187ae56 Get rid of more PyArg_Parse & METH_OLDARGS. by Neal Norwitz · 23 years ago
- 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 23 years ago
- 103b548 Add a note warning against semicolons following PyObject_HEAD. Minor cleanups. by Fred Drake · 23 years ago
- 64e5aa9 Fix for a bug in the fix for SF bug 503031. This time the OP verified by Guido van Rossum · 23 years ago
- 45afd54 Add an item by Andrew M. Kuchling · 23 years ago
- aee113d Add an experimental mechanism to support extending the pprint formatting. by Fred Drake · 23 years ago
- 4993c51 Make test_commands work on more systems. This removes much of the dependency by Fred Drake · 23 years ago
- 4dfb7a8 Explain that os.spawn*() return the process handle on Windows. by Fred Drake · 23 years ago
- d764b0a There is no PyArg_ConvertTuple(); call it by the right name. by Fred Drake · 23 years ago
- d5a072f Fix up the documentation of the type codes to give both the C and Python by Fred Drake · 23 years ago
- 88955cb Change reference to execframes to naming. by Jeremy Hylton · 23 years ago
- e604875 Restore a minimal definition of execution frame, since other parts of by Jeremy Hylton · 23 years ago
- 1824b59 Update programmer's note on nested functions. by Jeremy Hylton · 23 years ago
- f3255c8 Reword explanation of global statement since an undeclared global is a by Jeremy Hylton · 23 years ago
- f0c1f1b Note the sole case in which the ban on "from ... import *" within a by Jeremy Hylton · 23 years ago
- 15b6897 Remove the following restriction: by Jeremy Hylton · 23 years ago
- d09ed68 Note that it is illegal to delete a cell variable. by Jeremy Hylton · 23 years ago
- 2225add Given lambda its own section, instead of burying it in boolean operators. by Jeremy Hylton · 23 years ago
- 53ed917 Update / simplify Identifiers section for nested scopes. by Jeremy Hylton · 23 years ago
- e7d5773 Update docs for nested scopes. by Jeremy Hylton · 23 years ago
- f54519d Update to push the docs to python.org instead of python.sf.net. by Fred Drake · 23 years ago
- 6169f09 Fixed errors in two comments. by Tim Peters · 23 years ago
- f4dd65d Copy section on generators from the 2.2 document with a bit of rewriting by Andrew M. Kuchling · 23 years ago
- 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 23 years ago
- 9da3efd Mention 2.2.1 in intro and in bug/patch counts by Andrew M. Kuchling · 23 years ago
- 05c09d0 Format strings (tuples,) appropriately by Neal Norwitz · 23 years ago
- 28bb572 Use attributes appropriately by Neal Norwitz · 23 years ago
- b1295da There is no TestError, use TestFailed appropriately by Neal Norwitz · 23 years ago
- 8392f36 Update documentation of code objects. by Jeremy Hylton · 23 years ago
- c9319b3 Minor adjustments. by Fred Drake · 23 years ago
- 26c49b6 Small fixes for description of function attributes. by Jeremy Hylton · 23 years ago
- 2f6ef4c Reindent. Break long lines. Move comments before the statements. by Martin v. Löwis · 23 years ago
- 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 23 years ago
- 9bb7432 Remove all but one use of the module dict. by Fred Drake · 23 years ago
- d63e504 Remove unused variable and call to PyModule_GetDict(). by Fred Drake · 23 years ago
- acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 23 years ago
- 43c9d8a Remove UNLESS. by Martin v. Löwis · 23 years ago
- 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 23 years ago
- de14a30 We expect to skip the new test_mpz on Windows. by Tim Peters · 23 years ago
- f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 23 years ago
- 7829335 Get rid of another use of PyArg_Parse() by Neal Norwitz · 23 years ago
- 02098fa Get rid of all METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 23 years ago
- 496563a Remove some now-obsolete generator future statements. by Tim Peters · 23 years ago
- 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 23 years ago
- b955d6c Hopeful fix for SF bug 503031: urllib.py: open_http() host problem. by Guido van Rossum · 23 years ago
- dfd59e0 mpz_float() only takes one parameter now by Neal Norwitz · 23 years ago
- ff773eb Added a "run with commandline Python" flag. Works in MachoPython, should work by Jack Jansen · 23 years ago
- 767f835 Get rid of warnings due to changing to METH_NOARGS by Neal Norwitz · 23 years ago
- 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 23 years ago
- 28faa1b Convert METH_OLDARGS -> METH_NOARGS: remove args parameter by Neal Norwitz · 23 years ago
- bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 23 years ago
- b82d34f Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple by Neal Norwitz · 23 years ago
- ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 23 years ago
- 50905b5 Convert from using METH_OLDARGS to METH_NOARGS. These should be safe. by Neal Norwitz · 23 years ago
- 01b2694 Fix whitespace by Neal Norwitz · 23 years ago
- b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 23 years ago
- 031829d Use symbolic METH_VARARGS instead of 1 for ml_flags by Neal Norwitz · 23 years ago
- 93cf79f Use docstrings for exception classes by Neal Norwitz · 23 years ago
- f74e46c Derive exception classes from Exception by Neal Norwitz · 23 years ago
- 27a3530 Stop using string exceptions by Neal Norwitz · 23 years ago
- 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 23 years ago
- 4c5be0c Fixed an error in a new assert. by Tim Peters · 23 years ago
- b1da050 Fixed a typo in a new comment. by Tim Peters · 23 years ago
- 2c95c99 _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged by Tim Peters · 23 years ago
- 1e16db6 Added a long-overdue comment block giving an overview of pool operations by Tim Peters · 23 years ago
- e7f776a Suite to talk to the OSX Terminal application. by Jack Jansen · 23 years ago
- ad5dcaf Got rid of obsolete way to get at various toolbox types. by Jack Jansen · 23 years ago
- 77afbc0 Add Mac/Lib/lib-scriptpackages to sys.path too. by Jack Jansen · 23 years ago
- 4092606 Modified to allow it to run in MachoPython in a reasonable way. It still by Jack Jansen · 23 years ago
- c2ce91a It's once again thought safe to call the pymalloc free/realloc with an by Tim Peters · 23 years ago
- 7b85b4a new_arena(): In error cases, reset the number of available pools to 0. by Tim Peters · 23 years ago
- 1d99af8 Changed the #-of-arenas counters to uints -- no need to be insane about by Tim Peters · 23 years ago
- 8deda70 Eliminate DONT_SHARE_SHORT_STRINGS. by Tim Peters · 23 years ago
- 522cf1f Patch #536908: Add missing #include guards/extern "C". by Martin v. Löwis · 23 years ago
- df4d137 Turns out the off_t macro isn't used anymore, so got rid of it. by Tim Peters · 23 years ago
- 3c83df2 Now that we're no longer linking arenas together, there's no need to by Tim Peters · 23 years ago
- 1230068 Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} by Tim Peters · 23 years ago
- d97a1c0 Lots of changes: by Tim Peters · 23 years ago