summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-242-2/+38
* This patch partly (some stuff went in already) ports Python to Monterey.Trent Mick2000-08-231-0/+11
* Remove the dependency information for version.o; this is not part ofFred Drake2000-08-231-1/+0
* require list comprehensions to start with a for clauseSkip Montanaro2000-08-222-9/+9
* com_print_stmt(): Guido rightly points out that the stream expressionBarry Warsaw2000-08-211-5/+22
* Thomas reminds me to bump the MAGIC number for the extended printBarry Warsaw2000-08-211-1/+1
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-212-138/+184
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-8/+36
* Fix the bug Sjoerd Mullender discovered, where find_from_args() wasn'tThomas Wouters2000-08-201-1/+3
* Disallow "import mod.submod as m", because the result is ambiguous. Does itThomas Wouters2000-08-191-1/+2
* com_error(): Quiet gcc -Wall warning.Barry Warsaw2000-08-181-1/+0
* Remove a couple of warnings turned up by "gcc -Wall".Fred Drake2000-08-182-3/+4
* Do not set a MemoryError exception over another MemoryError exception,Vladimir Marangozov2000-08-181-0/+4
* SyntaxError__classinit__(): Slight reorg for simplicity.Barry Warsaw2000-08-181-4/+4
* comples_from_string(): Move s_buffer[] up to the top-level functionBarry Warsaw2000-08-181-2/+1
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-174-690/+793
* _PySys_Init(): Fix another Insure discovered memory leak; the PyStringBarry Warsaw2000-08-161-1/+2
* SyntaxError__str__(): Fix two memory problems discovered by Insure.Barry Warsaw2000-08-161-4/+9
* Fix new compiler warnings. Unused var in compile.c. Argsize mismatchesTim Peters2000-08-151-1/+0
* my_basename(): Removes the leading path components from a path name,Fred Drake2000-08-151-2/+23
* Remove the osdefs.h #include; it was not needed in the final version ofFred Drake2000-08-152-2/+0
* When raising a SyntaxError, make a best-effort attempt to set theFred Drake2000-08-151-9/+29
* When raising a SyntaxError, make a best-effort attempt to set theFred Drake2000-08-151-1/+19
* SyntaxError__str__(): Do more formatting of the exception here, ratherFred Drake2000-08-151-6/+55
* Guido pointed out that all names in the sys module have no underscore,Fred Drake2000-08-151-4/+5
* Fix the parent of WindowsError - both the comments in this source file, and t...Mark Hammond2000-08-151-1/+1
* The attempt to protect against MS_WIN16 compilers that do not support longFred Drake2000-08-141-1/+2
* Add a byte_order value to the sys module. The value is "big" forFred Drake2000-08-141-0/+13
* The list comp patch checked for the second child node of the 'listmaker'Thomas Wouters2000-08-131-1/+1
* The list comprehensions patch partly reversed the removal of UNPACK_LIST,Thomas Wouters2000-08-121-13/+0
* Clean up a couple of warnings on Win64. The downcast of the strlen size_tTrent Mick2000-08-121-1/+1
* list comprehensions. seeSkip Montanaro2000-08-122-215/+425
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-113-21/+7
* -- from Trent Mick: [Patch #101010] replace use of INT_PTRFredrik Lundh2000-08-071-5/+1
* When returning an error from jcompile() (which is passed through byGuido van Rossum2000-08-071-0/+8
* Avoid dumping core when PyErr_NormalizeException() is called withoutGuido van Rossum2000-08-071-0/+6
* Initialized opcode and oparg to silence a gcc -Wall warning.Moshe Zadka2000-08-071-2/+2
* Fix some strange indentation and grammar that have been bugging me forThomas Wouters2000-08-051-6/+5
* Changed H specifier to mean "bitfield", i.e. any value fromJack Jansen2000-08-051-5/+27
* Removing warnings by gcc -Wall -- cast ugly || to void.Moshe Zadka2000-08-041-1/+1
* Add a test that Py_IsInitialized() in Py_InitModule4(). SeeGuido van Rossum2000-08-041-0/+2
* This patch finalizes the move from UTF-8 to a default encoding inMarc-André Lemburg2000-08-031-4/+6
* Changing the CNRI copyright notice according to CNRI's instructions.Guido van Rossum2000-08-031-1/+1
* Both PEP 201 Lockstep Iteration and SF patch #101030 have beenBarry Warsaw2000-08-031-0/+56
* Include the dependence of sysmodule on the patchlevel.h include, soFred Drake2000-08-011-1/+1
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-313-5/+2
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-5/+5
* Create a new section of pyport.h to hold all external function declarationsThomas Wouters2000-07-241-1/+0
* Prototype yet another forward declaration.Thomas Wouters2000-07-241-1/+1
* Another missed ansification.Thomas Wouters2000-07-231-4/+1