summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Rewrite introductory section, and remove old section. (It was already ↵Andrew M. Kuchling2008-04-181-62/+29
| | | | commented-out, but why keep it?)
* Remove personal note from Jim Roskind; it no longer applies, and theAndrew M. Kuchling2008-04-181-9/+0
| | | | | | e-mail address is for a previous employer. Can we move the big long copyright statement into a sidebar or something?
* #2654: fix typoAndrew M. Kuchling2008-04-181-1/+1
|
* Use correct parameter nameAndrew M. Kuchling2008-04-181-1/+1
|
* Typo fixesAndrew M. Kuchling2008-04-171-2/+2
|
* Be consistent in the use of read-only.Jeroen Ruigrok van der Werven2008-04-171-1/+1
|
* Issue 2648: Add leading zero to money format recipe in the docs.Raymond Hettinger2008-04-172-10/+8
|
* Add details about the return value for mmap.flush().Jeroen Ruigrok van der Werven2008-04-161-0/+6
|
* Reformat to 80 columns prior to adding documentation.Jeroen Ruigrok van der Werven2008-04-161-88/+92
|
* Fix for possible signed overflow: the behaviour of -LONG_MIN isMark Dickinson2008-04-151-6/+19
| | | | undefined in ANSI C.
* Typo fixAndrew M. Kuchling2008-04-151-1/+1
|
* Add *,**,@ to index, as suggested byAndrew M. Kuchling2008-04-152-0/+13
| | | | | | | | http://farmdev.com/thoughts/24/what-does-the-def-star-variable-or-def-asterisk-parameter-syntax-do-in-python-/ The right entry type to use isn't clear; operator seems wrong, because *,**,@ aren't being used in expressions here. I put them as 'statement'; 'syntax' might be better.
* Add myself to Doc/ACKS.txtBenjamin Peterson2008-04-151-0/+1
|
* Add test file missing from rev 62350Nick Coghlan2008-04-151-0/+123
|
* Issue 2439: add pkgutils.get_data() as a convenience wrapper for the PEP 302 ↵Nick Coghlan2008-04-153-1/+62
| | | | get_data() API (contributed by Paul Moore)
* Prevent namespace pollution, add static for internal functionsNeal Norwitz2008-04-152-5/+5
|
* Various items; begin writing the SSL sectionAndrew M. Kuchling2008-04-151-8/+17
|
* Backport manually r62342 from the py3k branch to the trunk.Alexandre Vassalotti2008-04-141-17/+23
|
* Correct a refleak found by "regrtest.py -R:: test_structmembers"Amaury Forgeot d'Arc2008-04-141-5/+6
| | | | | | Some other minor updates in _warnings.c: - make a function static - rename a shadowing local variable
* Update project files for all Windows supported compilersAmaury Forgeot d'Arc2008-04-144-4/+15
|
* Issue #2616: Implement ctypes.pointer() and ctypes.POINTER() in C forThomas Heller2008-04-145-25/+83
| | | | better performance.
* Add exampleAndrew M. Kuchling2008-04-131-1/+7
|
* Check out Jinja as a separate step now that it's not included in the Sphinx ↵Georg Brandl2008-04-132-0/+7
| | | | package anymore.
* Improve -X error message.Georg Brandl2008-04-132-2/+2
|
* Added an ignore file for Bazaar #2510Benjamin Peterson2008-04-131-0/+43
|
* #2627 Let it be known what pgen generatesBenjamin Peterson2008-04-133-0/+7
|
* Fix spliting on colons on Windows machines with a file path by limiting theBrett Cannon2008-04-131-3/+1
| | | | number of splits.
* Add an explicit check for output in a test to try to diagnose a failure onBrett Cannon2008-04-131-1/+4
| | | | Windows.
* Added new files to the pcbuild filesChristian Heimes2008-04-131-0/+4
|
* Use PyString_InternFromString instead of PyString_FromString for static varsChristian Heimes2008-04-131-3/+3
|
* Fix compiler warning Include/warnings.h:19:28: warning: no newline at end of ↵Christian Heimes2008-04-131-1/+2
| | | | file
* Fix markup.Georg Brandl2008-04-131-7/+5
|
* spellingSkip Montanaro2008-04-131-1/+1
|
* Fix test_warnings by making the state of things more consistent for each testBrett Cannon2008-04-131-29/+42
| | | | when it is run.
* Give the "Interactive Interpreter Changes" section in 2.6 whatsnew a unique ↵Benjamin Peterson2008-04-131-1/+1
| | | | link name
* Backport the removal of a __repr__ from 62251Benjamin Peterson2008-04-131-3/+0
|
* Backported io module docsBenjamin Peterson2008-04-133-133/+913
|
* Mention -J, -XAndrew M. Kuchling2008-04-131-0/+14
|
* Fix an accidental bug of an non-existent init function.Brett Cannon2008-04-131-2/+0
|
* Fix a bug in PySys_HasWarnOption() where it was not properly checking theBrett Cannon2008-04-131-1/+1
| | | | length of the list storing the warning options.
* Adds a profile-opt target for easy compilation of a python binary usingGregory P. Smith2008-04-131-1/+29
| | | | gcc's profile guided optimization.
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-1218-379/+1459
| | | | | | | | | 'warnings' code in places where it was previously not possible (e.g., the parser). It could also potentially lead to a speed-up in interpreter start-up if the C version of the code (_warnings) is imported over the use of the Python version in key places. Closes issue #1631171.
* socket.error inherits from IOError, it no longer needs listing inGregory P. Smith2008-04-121-1/+1
| | | | the all_errors tuple.
* fix compiler warningsGregory P. Smith2008-04-121-5/+5
|
* Don't offend snake lovers.Georg Brandl2008-04-121-1/+1
|
* Add Jeroen.Georg Brandl2008-04-121-0/+3
|
* #2615: small consistency update by Jeroen Ruigrok van der Werven.Georg Brandl2008-04-121-4/+4
|
* Use absolute path in sys.path.Georg Brandl2008-04-121-1/+1
|
* Applied patch #2617 from Frank Wierzbicki wit some extras from meChristian Heimes2008-04-123-2/+20
| | | | -J and -X are now reserved for Jython and non-standard arguments (e.g. IronPython). I've added some extra comments to make sure the reservation don't get missed in the future.
* Performance improvements.Thomas Heller2008-04-111-3/+3
|