summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Essential changes for print function changes.Guido van Rossum2007-02-091-1/+2
* Update the magic number now that signature annotations were added.Guido van Rossum2006-12-281-1/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-6/+11
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-1/+2
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-1/+2
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-1/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-1/+6
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-45/+156
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-3/+5
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-12/+63
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-3/+22
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-2/+3
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-0/+1
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-4/+4
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-13/+56
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-16/+18
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-3/+5
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need toMichael W. Hudson2005-10-211-1/+3
* Merge ast-branch to headJeremy Hylton2005-10-201-11/+12
* Fix SF bug #976608, Unhelpful error message when mtime of a module is -1Neal Norwitz2005-10-031-1/+5
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-0/+12
* Patch #1290454: Fix reload() error message when parent module is not inGeorg Brandl2005-09-141-2/+3
* This is my patch:Michael W. Hudson2005-06-031-1/+2
* Patch #1197318: Cygwin case-sensitive import patchJason Tishler2005-05-201-17/+6
* SF patch #1035498: -m option to run a module as a scriptRaymond Hettinger2004-10-071-0/+16
* Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders.Phillip J. Eby2004-09-231-4/+10
* SF patch #1031667: Fold tuples of constants into a single constantRaymond Hettinger2004-09-221-1/+2
* SF Patch #1013667: Cleanup Peepholer OutputRaymond Hettinger2004-08-231-1/+2
* PyImport_ExecCodeModuleEx(): remove module from sys.modules in error cases.Tim Peters2004-08-021-16/+46
* lock_held() docs: Use True/False instead of 1/0. The LaTeX docs wereTim Peters2004-08-011-3/+3
* Trimmed trailing whitespace.Tim Peters2004-08-011-2/+2
* Patch #923098: Share interned strings in marshal.Martin v. Löwis2004-06-271-9/+9
* Fix a refcount bug in an obscure code corner.Thomas Heller2004-06-071-0/+1
* starting to add comments to explain what's hereFred Drake2004-05-281-0/+11
* Bump the magic number to avoid sharing bytecode between 2.3 and 2.4.Jeremy Hylton2004-04-011-32/+14
* Marshal clean-up (SF patch #873224)Armin Rigo2004-03-261-7/+7
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-2/+2
* Decref all if ensure_fromlist fails. Fixes #876533.Martin v. Löwis2004-03-231-2/+3
* Add comment to mollify Tim.Jeremy Hylton2004-01-021-0/+2
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-94/+0
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Bug #794140: cygwin builds do not embedJason Tishler2003-09-041-1/+1
* - fix typoFred Drake2003-07-111-1/+1
* Don't use the module object setattr when importing submodules. Instead,Neil Schemenauer2003-06-161-18/+38
* SF patch #708201, unchecked return value in import.c by Jason HarperNeal Norwitz2003-03-231-0/+2
* Remove PyArg_ParseTuple() for methods which take no args,Neal Norwitz2003-02-171-23/+13
* Cleanup from patch #683257:Neal Norwitz2003-02-121-4/+7