summaryrefslogtreecommitdiff
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Rip out the file object's implementation.Guido van Rossum2007-06-121-20/+17
* Revert 55876. Use PyUnicode_AsEncodedString instead.Martin v. Löwis2007-06-121-3/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-11/+45
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-3/+2
* More uniform approach to getting (UTF8) bytes out of a string.Guido van Rossum2007-05-091-30/+3
* More coding by random modification.Guido van Rossum2007-05-041-5/+17
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-2/+0
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+36
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-211-1/+1
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-1/+2
* 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